Struct eom::lyapunov::Jacobian

source ·
pub struct Jacobian<'jac, A, D, TEO>where
    A: Scalar + Lapack,
    D: Dimension,
    TEO: 'jac + TimeEvolution<Scalar = A, Dim = D>,{ /* private fields */ }
Expand description

Jacobian operator using numerical-differentiation

Implementations§

source§

impl<'jac, A, D, TEO> Jacobian<'jac, A, D, TEO>where A: Scalar + Lapack, D: Dimension, TEO: TimeEvolution<Scalar = A, Dim = D>,

source

pub fn new( f: &'jac mut TEO, x: Array<A, D>, alpha: A::Real ) -> Jacobian<'jac, A, D, TEO>where TEO: 'jac,

source

pub fn apply(&mut self, dx: Array<A, D>) -> Array<A, D>

source

pub fn apply_inplace<'a, S>( &mut self, dx: &'a mut ArrayBase<S, D> ) -> &'a mut ArrayBase<S, D>where S: DataMut<Elem = A>,

source

pub fn apply_multi(&mut self, a: Array<A, D::Larger>) -> Array<A, D::Larger>where D::Larger: RemoveAxis + Dimension<Smaller = D>,

source

pub fn apply_multi_inplace<'a, S>( &mut self, a: &'a mut ArrayBase<S, D::Larger> ) -> &'a mut ArrayBase<S, D::Larger>where S: DataMut<Elem = A>, D::Larger: RemoveAxis + Dimension<Smaller = D>,

Auto Trait Implementations§

§

impl<'jac, A, D, TEO> RefUnwindSafe for Jacobian<'jac, A, D, TEO>where A: RefUnwindSafe, D: RefUnwindSafe, TEO: RefUnwindSafe, <A as Scalar>::Real: RefUnwindSafe,

§

impl<'jac, A, D, TEO> Send for Jacobian<'jac, A, D, TEO>where A: Send, TEO: Send, <A as Scalar>::Real: Send,

§

impl<'jac, A, D, TEO> Sync for Jacobian<'jac, A, D, TEO>where A: Sync, TEO: Sync, <A as Scalar>::Real: Sync,

§

impl<'jac, A, D, TEO> Unpin for Jacobian<'jac, A, D, TEO>where D: Unpin, <A as Scalar>::Real: Unpin,

§

impl<'jac, A, D, TEO> !UnwindSafe for Jacobian<'jac, A, D, TEO>

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V