pub trait VectorFunction<T>where
T: Scalar,{
// Required methods
fn dimension(&self) -> usize;
fn eval_into(
&mut self,
f: &mut DVectorViewMut<'_, T>,
x: &DVectorView<'_, T>,
);
}
pub trait VectorFunction<T>where
T: Scalar,{
// Required methods
fn dimension(&self) -> usize;
fn eval_into(
&mut self,
f: &mut DVectorViewMut<'_, T>,
x: &DVectorView<'_, T>,
);
}