|
Calling Sequence
|
|
LSSpectrum(t, f, options)
|
|
Parameters
|
|
t
|
-
|
rtable ; the time
|
f
|
-
|
rtable ; the signal
|
|
|
|
|
Options
|
|
•
|
outputdata : posint : specify the number of the output data points
|
•
|
errors : rtable or realcons
|
•
|
precise : truefalse : indicates the methods to use
|
•
|
minimumfrequency : float : indicates minimum frequency
|
•
|
maximumfrequency : float : indicates maximum frequency
|
•
|
normalization : identical('standard', 'model', 'log', 'psd') ; indicates the type of normalization
|
•
|
oversamplingfactor : numeric : indicates the oversampling factor
|
•
|
nyquistfactor : numeric : indicates the multiple of the average Nyquist frequency
|
•
|
centerdata : truefalse : indicates whether the data needs to subtract the weighted mean
|
•
|
generalized : truefalse : indicates the methods to use for the Lomb Scargle Fast Approximation
|
|
|
Description
|
|
•
|
The LSSpectrum(t, f) command computes the frequencies and power spectrum based on provided time and signal using Lomb Scargle Periodogram Method, and returns the result in an Array of datatype float[8].
|
•
|
f and t can only be Vectors or one-dimensional Arrays.
|
•
|
There are two ways to compute the Lomb Scargle Periodogram: one can compute the exact values, or an approximation. Computing the approximation is generally much faster. If the precise option is set to true, then the actual formula is used for computation, otherwise the fast approximation is used. The default value is false.
|
•
|
The errors option specifies the expected magnitude of the errors, which is used to get the normalized weight for generalized Lomb Scargle periodogram. It can only be a real number or an one-dimensional array. The default value is NULL.
|
•
|
The outputdata option specifies the number of output data points. These output data points correspond to equally spaced frequencies.
|
•
|
The minimumfrequency option specifies the minimum frequency.
|
•
|
The maximumfrequency option specifies the maximum frequency.
|
•
|
If one of maximumfrequency, minimumfrequency and outputdata is specified, then all of them must be provided. If all of them are not provided, then the frequencies used run from to , where and where is the number of elements in t. Output frequencies are equally spaced.
|
•
|
The nyquistfactor option has a default value 1.
|
•
|
The normalization option controls the normalization used on the power and can be one of standard, model, log or psd. The default value is standard. Standard Normalization : . Model Normalization : . Logarithmic Normalization: . PSD Normalization : . In all normalization methods, let be the measurement in time with errors , then where is the number of elements in f, and is the non-varying reference model which is the for weighted mean.
|
•
|
The oversamplingfactor option specifies the oversampling factor. The default value is 5.
|
•
|
If the centerdata=false option is provided, then the weighted mean will not be subtracted from signal data. The default value is true.
|
•
|
If the generalized=false option is provided, then the generalized Lomb Scargle Periodogram will not be used. The default value is true.
|
|
|
Examples
|
|
>
|
|
Generate a time vector
>
|
|
Generate a signal using frequencies of 1 Hz and 2 Hz:
>
|
|
>
|
|
>
|
|
|
|
References
|
|
|
Lomb, Nicholas R. "Least-Squares Frequency Analysis of Unequally Spaced Data." Astrophysics and Space Science. Vol. 39, 1976, pp. 447–462.
|
|
Press, William H., and Rybicki, George B. "Fast Algorithm for Spectral Analysis of Unevenly Sampled Data." Astrophysical Journal. Vol. 338, 1989, pp. 277–280.
|
|
Zechmeister, M., and Kürster, M. "The generalised Lomb-Scargle periodogram. A new formalism for the floating-mean and Keplerian periodograms." Astronomy & Astrophysics. Vol. 496, 2009, pp. 577-584
|
|
|
Compatibility
|
|
•
|
The SignalProcessing[LSSpectrum] command was introduced in Maple 2019.
|
|
|
|