pub struct JacobianMatrix {
pub entries: [[f64; 2]; 2],
}Expand description
A Jacobian matrix Df(x*) for linearisation at an equilibrium.
Fields§
§entries: [[f64; 2]; 2]2×2 matrix entries
Implementations§
Auto Trait Implementations§
impl Freeze for JacobianMatrix
impl RefUnwindSafe for JacobianMatrix
impl Send for JacobianMatrix
impl Sync for JacobianMatrix
impl Unpin for JacobianMatrix
impl UnsafeUnpin for JacobianMatrix
impl UnwindSafe for JacobianMatrix
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