Trait Jacobian

Source
pub trait Jacobian
where Self: Tensor + Sub<Vector, Output = Self>,
{ // Required methods fn fill_into(self, vector: &mut Vector); fn fill_into_chained(self, other: Vector, vector: &mut Vector); }
Expand description

Common methods for Jacobians.

Required Methods§

Source

fn fill_into(self, vector: &mut Vector)

Fills the Jacobian into a vector.

Source

fn fill_into_chained(self, other: Vector, vector: &mut Vector)

Fills the Jacobian chained with a vector into another vector.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl Jacobian for Vector

Source§

impl Jacobian for TensorRank0

Source§

impl<const D: usize, const I: usize> Jacobian for TensorRank1Vec<D, I>

Source§

impl<const D: usize, const I: usize, const J: usize> Jacobian for TensorRank2<D, I, J>