pub struct InteractionMatrix { /* private fields */ }Implementations§
Source§impl InteractionMatrix
impl InteractionMatrix
pub fn from_matrix( values: DenseMatrix<f64>, species: usize, ) -> Result<Self, InteractionMatrixError>
pub fn from_labeled_matrix( values: DenseMatrix<f64>, species: usize, label: impl Into<String>, ) -> Result<Self, InteractionMatrixError>
pub fn from_rows( rows: Vec<Vec<f64>>, species: usize, ) -> Result<Self, InteractionMatrixError>
pub fn load_json( path: impl Into<PathBuf>, species: usize, ) -> Result<Self, InteractionMatrixError>
pub fn from_generated( values: DenseMatrix<f64>, species: usize, generator: GeneratorProvenance, ) -> Result<Self, InteractionMatrixError>
pub fn generate( species: usize, recipe: &InteractionMatrixRecipe, ) -> Result<Self, InteractionRecipeError>
pub fn species(&self) -> usize
pub fn values(&self) -> &DenseMatrix<f64>
pub fn coefficient(&self, row: usize, column: usize) -> f64
pub fn mul_vector_into( &self, input: &[f64], output: &mut [f64], ) -> Result<(), MatrixError>
pub const fn provenance(&self) -> &InteractionProvenance
pub fn generator_rng_record(&self) -> Result<Option<RngRecord>, RngRecordError>
Trait Implementations§
Source§impl Clone for InteractionMatrix
impl Clone for InteractionMatrix
Source§fn clone(&self) -> InteractionMatrix
fn clone(&self) -> InteractionMatrix
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 Freeze for InteractionMatrix
impl RefUnwindSafe for InteractionMatrix
impl Send for InteractionMatrix
impl Sync for InteractionMatrix
impl Unpin for InteractionMatrix
impl UnsafeUnpin for InteractionMatrix
impl UnwindSafe for InteractionMatrix
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more