dd_gengauss
¶
Generalized Gaussian distribution parametric model
Syntax¶
info = dd_gengauss()
P = dd_gengauss(r,param)
- Parameters
r
- Distance axis (N-array)param
- Model parameters
- Returns
P
- Distance distribution (N-array)info
- Model information (struct)
Model¶

with
Variable | Symbol | Default | Lower bound | Upper bound | Description |
---|---|---|---|---|---|
param(1) |
3.5 | 1.0 | 20 | center distance (nm) | |
param(2) |
0.5 | 0.2 | 5 | FWHM (nm) | |
param(2) |
5.0 | 0.25 | 15 | kurtosis |
Example using default parameters:

Description¶
info = dd_gengauss()
Returns an info
structure containing the specifics of the model:
info.model
- Full name of the parametric model.info.nparam
- Total number of adjustable parameters.info.parameters
- Structure array with information on individual parameters.
P = dd_gengauss(r,param)
Computes the distance distribution model P
from the axis r
according to the parameters array param
. The required parameters can also be found in the info
structure.