Struct light_curve_feature::PeriodogramPowerFft[][src]

pub struct PeriodogramPowerFft<T> where
    T: Float
{ /* fields omitted */ }
Expand description

“Fast” (FFT-based) periodogram executor

This algorithm spreads observer time series into uniform time grid using linear interpolation and then uses FFT to obtain periodogram sums. This implementation returns estimation of Lomb-Scargle periodogram that derives to the exact values while max_freq_factor grows. Asymptotic time is $O(N \log N)$, it is faster then PeriodogramPowerDirect even for $N \gtrsim 10$. Note that current implementation uses two-powered time grids and requires to estimate the best FFT algorithm for each pair of grid size and working thread that can take several seconds, especially for large grids.

The implementation is inspired by Numerical Recipes, Press et al., 1997, Section 13.8

Implementations

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

Performs the conversion.

Whether JSON Schemas generated for this type should be re-used where possible using the $ref keyword. Read more

The name of the generated JSON Schema. Read more

Generates a JSON Schema for this type. Read more

Serialize this value into the given Serde serializer. Read more

The type returned in the event of a conversion error.

Performs the conversion.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

The error type produced by a failed conversion.

Convert the given value into an approximately equivalent representation.

The error type produced by a failed conversion.

Convert the subject into an approximately equivalent representation.

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Approximate the subject with the default scheme.

Approximate the subject with a specific scheme.

Approximate the subject to a given type with the default scheme.

Approximate the subject to a given type with a specific scheme.

Convert the subject to a given type.

Attempt to convert the subject to a given type.

Attempt a value conversion of the subject to a given type.

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The error type produced by a failed conversion.

Convert the given value into the subject type.

The type returned in the event of a conversion error.

Performs the conversion.

The error type produced by a failed conversion.

Convert the subject into the destination type.

The type returned in the event of a conversion error.

Performs the conversion.

The error type produced by a failed conversion.

Convert the given value into an exactly equivalent representation.

The error type produced by a failed conversion.

Convert the subject into an exactly equivalent representation.