Interface OptionsSG1D

interface OptionsSG1D {
    from?: number;
    nbPoints?: number;
    peakWidthFct?: NumToNumFn;
    shape?: Shape1D;
    to?: number;
}

Properties

from?: number

First x value (inclusive).

Default

0
nbPoints?: number

Number of points in the final spectrum.

Default

10001
peakWidthFct?: NumToNumFn

Function that returns the width of a peak depending the x value.

Default

"() => 5"
shape?: Shape1D

Define the shape of the peak.

Default

"{kind: 'gaussian'}"
to?: number

Last x value (inclusive).

Default

1000