EnhancedPeriodogramConfig

Struct EnhancedPeriodogramConfig 

Source
pub struct EnhancedPeriodogramConfig {
Show 38 fields pub enable_bartlett_method: bool, pub bartlett_num_segments: usize, pub enable_enhanced_welch: bool, pub enable_multitaper: bool, pub multitaper_num_tapers: usize, pub multitaper_bandwidth: f64, pub enable_blackman_tukey: bool, pub blackman_tukey_max_lag_factor: f64, pub enable_capon_method: bool, pub enable_music_method: bool, pub music_num_sources: usize, pub enable_enhanced_ar: bool, pub enhanced_ar_order: usize, pub enable_window_analysis: bool, pub primary_window_type: String, pub enable_auto_window_selection: bool, pub window_selection_criteria: String, pub calculate_window_effectiveness: bool, pub calculate_spectral_leakage: bool, pub spectral_leakage_threshold: f64, pub enable_cross_periodogram: bool, pub enable_coherence_analysis: bool, pub coherence_confidence_level: f64, pub enable_phase_spectrum: bool, pub phase_unwrapping_method: String, pub calculate_periodogram_xcorr: bool, pub xcorr_max_lag: usize, pub enable_confidence_intervals: bool, pub confidence_level: f64, pub enable_significance_testing: bool, pub significance_test_method: String, pub enable_goodness_of_fit: bool, pub null_hypothesis_model: String, pub enable_variance_bias_estimation: bool, pub enable_bias_correction: bool, pub enable_variance_reduction: bool, pub enable_smoothing: bool, pub enable_zero_padding: bool,
}
Expand description

Configuration for enhanced periodogram analysis

Fields§

§enable_bartlett_method: bool

Enable Bartlett’s method (averaged periodograms)

§bartlett_num_segments: usize

Number of segments for Bartlett’s method

§enable_enhanced_welch: bool

Enable enhanced Welch’s method

§enable_multitaper: bool

Enable multitaper periodogram using Thomson’s method

§multitaper_num_tapers: usize

Number of tapers for multitaper method

§multitaper_bandwidth: f64

Time-bandwidth product for multitaper

§enable_blackman_tukey: bool

Enable Blackman-Tukey periodogram

§blackman_tukey_max_lag_factor: f64

Maximum lag for Blackman-Tukey method (fraction of signal length)

§enable_capon_method: bool

Enable Capon’s minimum variance method

§enable_music_method: bool

Enable MUSIC (Multiple Signal Classification) method

§music_num_sources: usize

Number of signal sources for MUSIC method

§enable_enhanced_ar: bool

Enable enhanced autoregressive periodogram

§enhanced_ar_order: usize

Enhanced AR model order

§enable_window_analysis: bool

Enable window analysis and optimization

§primary_window_type: String

Primary window type to use

§enable_auto_window_selection: bool

Enable automatic window selection

§window_selection_criteria: String

Window selection criteria

§calculate_window_effectiveness: bool

Calculate window effectiveness metrics

§calculate_spectral_leakage: bool

Calculate spectral leakage measures

§spectral_leakage_threshold: f64

Leakage threshold for warnings

§enable_cross_periodogram: bool

Enable cross-periodogram analysis

§enable_coherence_analysis: bool

Enable coherence function calculation

§coherence_confidence_level: f64

Coherence confidence level

§enable_phase_spectrum: bool

Enable phase spectrum analysis

§phase_unwrapping_method: String

Phase unwrapping method

§calculate_periodogram_xcorr: bool

Calculate cross-correlation from periodogram

§xcorr_max_lag: usize

Maximum lag for cross-correlation analysis

§enable_confidence_intervals: bool

Enable confidence interval calculation

§confidence_level: f64

Confidence level for intervals (e.g., 0.95)

§enable_significance_testing: bool

Enable statistical significance testing

§significance_test_method: String

Significance testing method

§enable_goodness_of_fit: bool

Enable goodness-of-fit testing

§null_hypothesis_model: String

Null hypothesis spectral model

§enable_variance_bias_estimation: bool

Enable variance and bias estimation

§enable_bias_correction: bool

Enable bias correction methods

§enable_variance_reduction: bool

Enable variance reduction methods

§enable_smoothing: bool

Enable smoothing methods

§enable_zero_padding: bool

Enable zero padding for frequency resolution enhancement

Trait Implementations§

Source§

impl Clone for EnhancedPeriodogramConfig

Source§

fn clone(&self) -> EnhancedPeriodogramConfig

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for EnhancedPeriodogramConfig

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for EnhancedPeriodogramConfig

Source§

fn default() -> Self

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

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<SS, SP> SupersetOf<SS> for SP
where SS: SubsetOf<SP>,

Source§

fn to_subset(&self) -> Option<SS>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
Source§

fn is_in_subset(&self) -> bool

Checks if self is actually part of its subset T (and can be converted to it).
Source§

fn to_subset_unchecked(&self) -> SS

Use with care! Same as self.to_subset but without any property checks. Always succeeds.
Source§

fn from_subset(element: &SS) -> SP

The inclusion map: converts self to the equivalent element of its superset.
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

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

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V