Trait light_curve_feature::EvaluatorInfoTrait[][src]

pub trait EvaluatorInfoTrait {
    fn get_info(&self) -> &EvaluatorInfo;

    fn size_hint(&self) -> usize { ... }
fn min_ts_length(&self) -> usize { ... }
fn is_t_required(&self) -> bool { ... }
fn is_m_required(&self) -> bool { ... }
fn is_w_required(&self) -> bool { ... }
fn is_sorting_required(&self) -> bool { ... } }

Required methods

Get feature evaluator meta-information

Provided methods

Size of vectors returned by eval(), get_names() and get_descriptions()

Minimum time series length required to successfully evaluate feature

If time array used by the feature

If magnitude array is used by the feature

If weight array is used by the feature

If feature requires time-sorting on the input TimeSeries

Implementors