[][src]Struct generic_newton::Newton

pub struct Newton<T> where
    T: Div<Output = T> + Sub<Output = T> + Copy
{ /* fields omitted */ }

An iterator that returns successive iterations of the Newton's method.

This iterator is generic over it's entry, and allows to freely use the Newton method on arbitrary types.

Example

use generic_newton::Newton;

fn main() {
    let mut n = Newton::<f64>::new(
        0.5, // Initial guess
        |x| x.cos() - x.powi(3), // The actual function
        |x| -(x.sin() + 3. * x.powi(2)), // Its derivative
    );

    assert!((n.nth(1000).unwrap() - 0.865474033102).abs() < 1E-11)
}

Implementations

impl<T> Newton<T> where
    T: Div<Output = T> + Sub<Output = T> + Copy
[src]

pub fn new(
    initial_guess: T,
    func: fn(_: T) -> T,
    derivative: fn(_: T) -> T
) -> Self
[src]

Creates a new Newton iterator.

  • func is the actual function to find the root of
  • derivative is it's derivative.

Trait Implementations

impl<T> Iterator for Newton<T> where
    T: Div<Output = T> + Sub<Output = T> + Copy
[src]

type Item = T

The type of the elements being iterated over.

Auto Trait Implementations

impl<T> RefUnwindSafe for Newton<T> where
    T: RefUnwindSafe

impl<T> Send for Newton<T> where
    T: Send

impl<T> Sync for Newton<T> where
    T: Sync

impl<T> Unpin for Newton<T> where
    T: Unpin

impl<T> UnwindSafe for Newton<T> where
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.