pub struct Power { /* private fields */ }Expand description
Power function structure
Implementations§
Trait Implementations§
Source§impl Function for Power
impl Function for Power
fn newton(&self, limits: &Limits) -> Result<f64, &'static str>
fn solve(&self) -> Option<Vec<f64>>
fn derivative_solve(&self) -> Option<Vec<f64>>
fn f(&self, x: &f64) -> f64
fn derivative_f(&self, x: &f64) -> f64
fn limits(&self) -> Limits
fn trapezoid(&self, limits: &Limits) -> f64
fn simpson(&self, limits: &Limits) -> f64
fn derivative_points(&self, limits: &Limits) -> Vec<f64>
fn function_points(&self, limits: &Limits) -> Vec<f64>
fn evenness(&self) -> &str
fn calculate_point(&self, x: &f64) -> f64
fn calculate_derivative_point(&self, x: &f64) -> f64
Auto Trait Implementations§
impl Freeze for Power
impl RefUnwindSafe for Power
impl Send for Power
impl Sync for Power
impl Unpin for Power
impl UnwindSafe for Power
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