pub struct Secant { /* private fields */ }Expand description
Secant method for root-finding.
Trait Implementations§
Source§impl<F> FindBracketedRoot<F> for Secantwhere
F: Callback,
impl<F> FindBracketedRoot<F> for Secantwhere
F: Callback,
Source§fn find_in_bracket(
&self,
f: F,
bracket: (f64, f64),
) -> Result<f64, RootFinderError>
fn find_in_bracket( &self, f: F, bracket: (f64, f64), ) -> Result<f64, RootFinderError>
Finds a root of
f within the given bracket.impl Copy for Secant
impl StructuralPartialEq for Secant
Auto Trait Implementations§
impl Freeze for Secant
impl RefUnwindSafe for Secant
impl Send for Secant
impl Sync for Secant
impl Unpin for Secant
impl UnsafeUnpin for Secant
impl UnwindSafe for Secant
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