pub struct MultiDualMultivector<T: Float> {
pub values: Vec<T>,
pub jacobian: Vec<Vec<T>>,
pub n_vars: usize,
pub basis_count: usize,
}Expand description
Multi-variable dual multivector for computing full Jacobians
Fields§
§values: Vec<T>Function values for each basis component
jacobian: Vec<Vec<T>>Jacobian matrix: [basis_component][variable]
n_vars: usize§basis_count: usizeImplementations§
Trait Implementations§
Source§impl<T: Clone + Float> Clone for MultiDualMultivector<T>
impl<T: Clone + Float> Clone for MultiDualMultivector<T>
Source§fn clone(&self) -> MultiDualMultivector<T>
fn clone(&self) -> MultiDualMultivector<T>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl<T> Freeze for MultiDualMultivector<T>
impl<T> RefUnwindSafe for MultiDualMultivector<T>where
T: RefUnwindSafe,
impl<T> Send for MultiDualMultivector<T>where
T: Send,
impl<T> Sync for MultiDualMultivector<T>where
T: Sync,
impl<T> Unpin for MultiDualMultivector<T>where
T: Unpin,
impl<T> UnwindSafe for MultiDualMultivector<T>where
T: UnwindSafe,
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