pub struct PolynomialCurveFit { /* private fields */ }Expand description
A polynomial fit of the enclosing target (y) against the chosen independent variable (x).
Implementations§
Source§impl PolynomialCurveFit
impl PolynomialCurveFit
Sourcepub fn builder() -> Builder<IndependentVariableStage>
pub fn builder() -> Builder<IndependentVariableStage>
Returns a new builder.
Source§impl PolynomialCurveFit
impl PolynomialCurveFit
Sourcepub fn new(
independent_variable: CurveFitVariable,
degree: IntegerConstant,
) -> PolynomialCurveFit
pub fn new( independent_variable: CurveFitVariable, degree: IntegerConstant, ) -> PolynomialCurveFit
Constructs a new instance of the type.
Sourcepub fn independent_variable(&self) -> &CurveFitVariable
pub fn independent_variable(&self) -> &CurveFitVariable
The x axis the target is fit against — either relative sample time or another series.
Sourcepub fn degree(&self) -> &IntegerConstant
pub fn degree(&self) -> &IntegerConstant
The highest allowable degree of the fit polynomial.
Sourcepub fn intercept(&self) -> Option<&DoubleConstant>
pub fn intercept(&self) -> Option<&DoubleConstant>
The y-value at the point x (or t) = 0. If omitted, the y-intercept will also be fit to the data.
Trait Implementations§
Source§impl Clone for PolynomialCurveFit
impl Clone for PolynomialCurveFit
Source§fn clone(&self) -> PolynomialCurveFit
fn clone(&self) -> PolynomialCurveFit
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PolynomialCurveFit
impl Debug for PolynomialCurveFit
Source§impl<'de> Deserialize<'de> for PolynomialCurveFit
impl<'de> Deserialize<'de> for PolynomialCurveFit
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<PolynomialCurveFit, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<PolynomialCurveFit, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for PolynomialCurveFit
Source§impl Hash for PolynomialCurveFit
impl Hash for PolynomialCurveFit
Source§impl Ord for PolynomialCurveFit
impl Ord for PolynomialCurveFit
Source§fn cmp(&self, other: &PolynomialCurveFit) -> Ordering
fn cmp(&self, other: &PolynomialCurveFit) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for PolynomialCurveFit
impl PartialEq for PolynomialCurveFit
Source§fn eq(&self, other: &PolynomialCurveFit) -> bool
fn eq(&self, other: &PolynomialCurveFit) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for PolynomialCurveFit
impl PartialOrd for PolynomialCurveFit
Source§impl Serialize for PolynomialCurveFit
impl Serialize for PolynomialCurveFit
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for PolynomialCurveFit
impl RefUnwindSafe for PolynomialCurveFit
impl Send for PolynomialCurveFit
impl Sync for PolynomialCurveFit
impl Unpin for PolynomialCurveFit
impl UnsafeUnpin for PolynomialCurveFit
impl UnwindSafe for PolynomialCurveFit
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request