pub trait GetValue<const R: usize, const C: usize> {
type Value;
// Required method
fn value(&self) -> Self::Value;
}Expand description
Trait for extracting numerical values from AD matrices
§Type Parameters
R- Number of rowsC- Number of columns