kind of shape

interface GaussianShape1D {
    fwhm?: number;
    kind: "gaussian";
    sd?: number;
}

Hierarchy

Properties

Properties

fwhm?: number

Full width at half maximum.

Default

500
kind: "gaussian"
sd?: number

The halft width between the inflection points or standard deviation. If it is defined the fwhm would be re-assigned.