pub trait CotangentEstimator {
// Required method
fn model_cotangent(
&self,
predictors: &[f64],
outcomes: &[f64],
max_frequency: f64,
) -> CotangentCoefficients;
// Provided method
fn boxed_cotangent(self) -> Box<dyn CotangentEstimator>
where Self: Sized + 'static { ... }
}
Available on crate feature
regression
only.Expand description
Implemented by all estimators yielding a cotangent function.
Required Methods§
sourcefn model_cotangent(
&self,
predictors: &[f64],
outcomes: &[f64],
max_frequency: f64,
) -> CotangentCoefficients
fn model_cotangent( &self, predictors: &[f64], outcomes: &[f64], max_frequency: f64, ) -> CotangentCoefficients
Model the CotangentCoefficients
from predictors
and outcomes
.
§Panics
The two slices must have the same length.
Provided Methods§
sourcefn boxed_cotangent(self) -> Box<dyn CotangentEstimator>where
Self: Sized + 'static,
fn boxed_cotangent(self) -> Box<dyn CotangentEstimator>where
Self: Sized + 'static,
Put this estimator in a box. This is useful for conditionally choosing different estimators.