conspire::math

Struct SquareMatrix

Source
pub struct SquareMatrix(/* private fields */);
Expand description

A square matrix.

Trait Implementations§

Source§

impl Add<&SquareMatrix> for SquareMatrix

Source§

type Output = SquareMatrix

The resulting type after applying the + operator.
Source§

fn add(self, vector: &Self) -> Self::Output

Performs the + operation. Read more
Source§

impl Add for SquareMatrix

Source§

type Output = SquareMatrix

The resulting type after applying the + operator.
Source§

fn add(self, vector: Self) -> Self::Output

Performs the + operation. Read more
Source§

impl AddAssign<&SquareMatrix> for SquareMatrix

Source§

fn add_assign(&mut self, vector: &Self)

Performs the += operation. Read more
Source§

impl AddAssign for SquareMatrix

Source§

fn add_assign(&mut self, vector: Self)

Performs the += operation. Read more
Source§

impl Clone for SquareMatrix

Source§

fn clone(&self) -> SquareMatrix

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for SquareMatrix

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Display for SquareMatrix

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Div<&f64> for SquareMatrix

Source§

type Output = SquareMatrix

The resulting type after applying the / operator.
Source§

fn div(self, tensor_rank_0: &TensorRank0) -> Self::Output

Performs the / operation. Read more
Source§

impl Div<f64> for SquareMatrix

Source§

type Output = SquareMatrix

The resulting type after applying the / operator.
Source§

fn div(self, tensor_rank_0: TensorRank0) -> Self::Output

Performs the / operation. Read more
Source§

impl DivAssign<&f64> for SquareMatrix

Source§

fn div_assign(&mut self, tensor_rank_0: &TensorRank0)

Performs the /= operation. Read more
Source§

impl DivAssign<f64> for SquareMatrix

Source§

fn div_assign(&mut self, tensor_rank_0: TensorRank0)

Performs the /= operation. Read more
Source§

impl FromIterator<Vector> for SquareMatrix

Source§

fn from_iter<Ii: IntoIterator<Item = Vector>>(into_iterator: Ii) -> Self

Creates a value from an iterator. Read more
Source§

impl Hessian for SquareMatrix

Source§

fn is_positive_definite(&self) -> bool

Checks whether the Hessian is positive-definite.
Source§

impl Index<usize> for SquareMatrix

Source§

type Output = Vector

The returned type after indexing.
Source§

fn index(&self, index: usize) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
Source§

impl IndexMut<usize> for SquareMatrix

Source§

fn index_mut(&mut self, index: usize) -> &mut Self::Output

Performs the mutable indexing (container[index]) operation. Read more
Source§

impl Mul<&f64> for &SquareMatrix

Source§

type Output = SquareMatrix

The resulting type after applying the * operator.
Source§

fn mul(self, tensor_rank_0: &TensorRank0) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<&f64> for SquareMatrix

Source§

type Output = SquareMatrix

The resulting type after applying the * operator.
Source§

fn mul(self, tensor_rank_0: &TensorRank0) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<f64> for SquareMatrix

Source§

type Output = SquareMatrix

The resulting type after applying the * operator.
Source§

fn mul(self, tensor_rank_0: TensorRank0) -> Self::Output

Performs the * operation. Read more
Source§

impl MulAssign<&f64> for SquareMatrix

Source§

fn mul_assign(&mut self, tensor_rank_0: &TensorRank0)

Performs the *= operation. Read more
Source§

impl MulAssign<f64> for SquareMatrix

Source§

fn mul_assign(&mut self, tensor_rank_0: TensorRank0)

Performs the *= operation. Read more
Source§

impl PartialEq for SquareMatrix

Source§

fn eq(&self, other: &Self) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Rank2 for SquareMatrix

Source§

type Transpose = SquareMatrix

The type that is the transpose of the tensor.
Source§

fn cholesky_decomposition(&self) -> Result<SquareMatrix, TensorError>

Returns the Cholesky decomposition of the rank-2 tensor.
Source§

fn deviatoric(&self) -> Self

Returns the deviatoric component of the rank-2 tensor.
Source§

fn deviatoric_and_trace(&self) -> (Self, TensorRank0)

Returns the deviatoric component and trace of the rank-2 tensor.
Source§

fn is_diagonal(&self) -> bool

Checks whether the tensor is a diagonal tensor.
Source§

fn is_identity(&self) -> bool

Checks whether the tensor is the identity tensor.
Source§

fn squared_trace(&self) -> TensorRank0

Returns the trace of the rank-2 tensor squared.
Source§

fn trace(&self) -> TensorRank0

Returns the trace of the rank-2 tensor.
Source§

fn transpose(&self) -> Self::Transpose

Returns the transpose of the rank-2 tensor.
Source§

fn second_invariant(&self) -> TensorRank0

Returns the second invariant of the rank-2 tensor.
Source§

impl Sub<&SquareMatrix> for SquareMatrix

Source§

type Output = SquareMatrix

The resulting type after applying the - operator.
Source§

fn sub(self, vector: &Self) -> Self::Output

Performs the - operation. Read more
Source§

impl Sub for SquareMatrix

Source§

type Output = SquareMatrix

The resulting type after applying the - operator.
Source§

fn sub(self, vector: Self) -> Self::Output

Performs the - operation. Read more
Source§

impl SubAssign<&SquareMatrix> for SquareMatrix

Source§

fn sub_assign(&mut self, vector: &Self)

Performs the -= operation. Read more
Source§

impl SubAssign for SquareMatrix

Source§

fn sub_assign(&mut self, vector: Self)

Performs the -= operation. Read more
Source§

impl Tensor for SquareMatrix

Source§

type Item = Vector

The type of item encountered when iterating over the tensor.
Source§

fn iter(&self) -> impl Iterator<Item = &Self::Item>

Returns an iterator. Read more
Source§

fn iter_mut(&mut self) -> impl Iterator<Item = &mut Self::Item>

Returns an iterator that allows modifying each value. Read more
Source§

fn full_contraction(&self, tensor: &Self) -> TensorRank0

Returns the full contraction with another tensor.
Source§

fn get_at(&self, _indices: &[usize]) -> &TensorRank0

Returns a reference to the entry at the specified indices.
Source§

fn get_at_mut(&mut self, _indices: &[usize]) -> &mut TensorRank0

Returns a mutable reference to the entry at the specified indices.
Source§

fn is_zero(&self) -> bool

Checks whether the tensor is the zero tensor.
Source§

fn norm(&self) -> TensorRank0

Returns the tensor norm.
Source§

fn norm_squared(&self) -> TensorRank0

Returns the tensor norm squared.
Source§

fn normalize(&mut self)

Normalizes the tensor.
Source§

fn normalized(self) -> Self

Returns the tensor normalized.
Source§

impl TensorVec for SquareMatrix

Source§

type Item = Vector

The type of item encountered when iterating over the tensor.
Source§

type Slice<'a> = &'a [&'a [f64]]

The type of slice corresponding to the tensor.
Source§

fn append(&mut self, other: &mut Self)

Moves all the items of other into self, leaving other empty.
Source§

fn is_empty(&self) -> bool

Returns true if the vector contains no items.
Source§

fn len(&self) -> usize

Returns the number of items in the vector, also referred to as its ‘length’.
Source§

fn new(slice: Self::Slice<'_>) -> Self

Returns a tensor given a slice.
Source§

fn push(&mut self, item: Self::Item)

Appends an item to the back of the Vec.
Source§

fn zero(len: usize) -> Self

Returns the zero tensor.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<A, Y, U> OdeSolver<Y, U> for A
where A: Debug, Y: Tensor, U: TensorVec<Item = Y>,