Struct faer::Scale

source ·
pub struct Scale<E>(pub E);
Expand description

Factor for matrix-scalar multiplication.

Tuple Fields§

§0: E

Implementations§

source§

impl<E> Scale<E>

source

pub fn value(self) -> E

Returns the inner value.

Trait Implementations§

source§

impl<E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Add<Scale<RhsE>> for Scale<LhsE>

§

type Output = Scale<E>

The resulting type after applying the + operator.
source§

fn add(self, rhs: Scale<RhsE>) -> Self::Output

Performs the + operation. Read more
source§

impl<LhsE: ComplexField, RhsE: Conjugate<Canonical = LhsE>> AddAssign<Scale<RhsE>> for Scale<LhsE>

source§

fn add_assign(&mut self, rhs: Scale<RhsE>)

Performs the += operation. Read more
source§

impl<E: Clone> Clone for Scale<E>

source§

fn clone(&self) -> Scale<E>

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<E: Debug> Debug for Scale<E>

source§

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

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

impl<E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<&Col<RhsE>> for Scale<LhsE>

§

type Output = Col<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: &Col<RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<&ColMut<'_, RhsE>> for Scale<LhsE>

§

type Output = Col<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: &ColMut<'_, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<&ColRef<'_, RhsE>> for Scale<LhsE>

§

type Output = Col<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: &ColRef<'_, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<&Diag<RhsE>> for Scale<LhsE>

§

type Output = Diag<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: &Diag<RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<&DiagMut<'_, RhsE>> for Scale<LhsE>

§

type Output = Diag<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: &DiagMut<'_, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<&DiagRef<'_, RhsE>> for Scale<LhsE>

§

type Output = Diag<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: &DiagRef<'_, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<&Mat<RhsE>> for Scale<LhsE>

§

type Output = Mat<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: &Mat<RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<&MatMut<'_, RhsE>> for Scale<LhsE>

§

type Output = Mat<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: &MatMut<'_, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<&MatRef<'_, RhsE>> for Scale<LhsE>

§

type Output = Mat<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: &MatRef<'_, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<&Row<RhsE>> for Scale<LhsE>

§

type Output = Row<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: &Row<RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<&RowMut<'_, RhsE>> for Scale<LhsE>

§

type Output = Row<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: &RowMut<'_, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<&RowRef<'_, RhsE>> for Scale<LhsE>

§

type Output = Row<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: &RowRef<'_, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<&SparseColMat<I, RhsE>> for Scale<LhsE>

§

type Output = SparseColMat<I, E>

The resulting type after applying the * operator.
source§

fn mul(self, other: &SparseColMat<I, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<&SparseColMatMut<'_, I, RhsE>> for Scale<LhsE>

§

type Output = SparseColMat<I, E>

The resulting type after applying the * operator.
source§

fn mul(self, other: &SparseColMatMut<'_, I, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<&SparseColMatRef<'_, I, RhsE>> for Scale<LhsE>

§

type Output = SparseColMat<I, E>

The resulting type after applying the * operator.
source§

fn mul(self, other: &SparseColMatRef<'_, I, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<&SparseRowMat<I, RhsE>> for Scale<LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the * operator.
source§

fn mul(self, other: &SparseRowMat<I, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<&SparseRowMatMut<'_, I, RhsE>> for Scale<LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the * operator.
source§

fn mul(self, other: &SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<&SparseRowMatRef<'_, I, RhsE>> for Scale<LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the * operator.
source§

fn mul(self, other: &SparseRowMatRef<'_, I, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<Col<RhsE>> for Scale<LhsE>

§

type Output = Col<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: Col<RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<ColMut<'_, RhsE>> for Scale<LhsE>

§

type Output = Col<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: ColMut<'_, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<ColRef<'_, RhsE>> for Scale<LhsE>

§

type Output = Col<E>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: ColRef<'_, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<Diag<RhsE>> for Scale<LhsE>

§

type Output = Diag<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: Diag<RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<DiagMut<'_, RhsE>> for Scale<LhsE>

§

type Output = Diag<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: DiagMut<'_, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<DiagRef<'_, RhsE>> for Scale<LhsE>

§

type Output = Diag<E>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: DiagRef<'_, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<Mat<RhsE>> for Scale<LhsE>

§

type Output = Mat<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: Mat<RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<MatMut<'_, RhsE>> for Scale<LhsE>

§

type Output = Mat<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: MatMut<'_, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<MatRef<'_, RhsE>> for Scale<LhsE>

§

type Output = Mat<E>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: MatRef<'_, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<Row<RhsE>> for Scale<LhsE>

§

type Output = Row<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: Row<RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<RowMut<'_, RhsE>> for Scale<LhsE>

§

type Output = Row<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: RowMut<'_, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<RowRef<'_, RhsE>> for Scale<LhsE>

§

type Output = Row<E>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: RowRef<'_, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<Scale<RhsE>> for &Col<LhsE>

§

type Output = Col<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: Scale<RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<Scale<RhsE>> for &ColMut<'_, LhsE>

§

type Output = Col<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: Scale<RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<Scale<RhsE>> for &ColRef<'_, LhsE>

§

type Output = Col<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: Scale<RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<Scale<RhsE>> for &Diag<LhsE>

§

type Output = Diag<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: Scale<RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<Scale<RhsE>> for &DiagMut<'_, LhsE>

§

type Output = Diag<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: Scale<RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<Scale<RhsE>> for &DiagRef<'_, LhsE>

§

type Output = Diag<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: Scale<RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<Scale<RhsE>> for &Mat<LhsE>

§

type Output = Mat<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: Scale<RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<Scale<RhsE>> for &MatMut<'_, LhsE>

§

type Output = Mat<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: Scale<RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<Scale<RhsE>> for &MatRef<'_, LhsE>

§

type Output = Mat<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: Scale<RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<Scale<RhsE>> for &Row<LhsE>

§

type Output = Row<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: Scale<RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<Scale<RhsE>> for &RowMut<'_, LhsE>

§

type Output = Row<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: Scale<RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<Scale<RhsE>> for &RowRef<'_, LhsE>

§

type Output = Row<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: Scale<RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<Scale<RhsE>> for &SparseColMat<I, LhsE>

§

type Output = SparseColMat<I, E>

The resulting type after applying the * operator.
source§

fn mul(self, other: Scale<RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<Scale<RhsE>> for &SparseColMatMut<'_, I, LhsE>

§

type Output = SparseColMat<I, E>

The resulting type after applying the * operator.
source§

fn mul(self, other: Scale<RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<Scale<RhsE>> for &SparseColMatRef<'_, I, LhsE>

§

type Output = SparseColMat<I, E>

The resulting type after applying the * operator.
source§

fn mul(self, other: Scale<RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<Scale<RhsE>> for &SparseRowMat<I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the * operator.
source§

fn mul(self, other: Scale<RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<Scale<RhsE>> for &SparseRowMatMut<'_, I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the * operator.
source§

fn mul(self, other: Scale<RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<Scale<RhsE>> for &SparseRowMatRef<'_, I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the * operator.
source§

fn mul(self, other: Scale<RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<Scale<RhsE>> for Col<LhsE>

§

type Output = Col<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: Scale<RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<Scale<RhsE>> for ColMut<'_, LhsE>

§

type Output = Col<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: Scale<RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<Scale<RhsE>> for ColRef<'_, LhsE>

§

type Output = Col<E>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Scale<RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<Scale<RhsE>> for Diag<LhsE>

§

type Output = Diag<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: Scale<RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<Scale<RhsE>> for DiagMut<'_, LhsE>

§

type Output = Diag<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: Scale<RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<Scale<RhsE>> for DiagRef<'_, LhsE>

§

type Output = Diag<E>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Scale<RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<Scale<RhsE>> for Mat<LhsE>

§

type Output = Mat<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: Scale<RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<Scale<RhsE>> for MatMut<'_, LhsE>

§

type Output = Mat<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: Scale<RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<Scale<RhsE>> for MatRef<'_, LhsE>

§

type Output = Mat<E>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Scale<RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<Scale<RhsE>> for Row<LhsE>

§

type Output = Row<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: Scale<RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<Scale<RhsE>> for RowMut<'_, LhsE>

§

type Output = Row<E>

The resulting type after applying the * operator.
source§

fn mul(self, other: Scale<RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<Scale<RhsE>> for RowRef<'_, LhsE>

§

type Output = Row<E>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Scale<RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<Scale<RhsE>> for Scale<LhsE>

§

type Output = Scale<E>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Scale<RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<Scale<RhsE>> for SparseColMat<I, LhsE>

§

type Output = SparseColMat<I, E>

The resulting type after applying the * operator.
source§

fn mul(self, other: Scale<RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<Scale<RhsE>> for SparseColMatMut<'_, I, LhsE>

§

type Output = SparseColMat<I, E>

The resulting type after applying the * operator.
source§

fn mul(self, other: Scale<RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<Scale<RhsE>> for SparseColMatRef<'_, I, LhsE>

§

type Output = SparseColMat<I, E>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Scale<RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<Scale<RhsE>> for SparseRowMat<I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the * operator.
source§

fn mul(self, other: Scale<RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<Scale<RhsE>> for SparseRowMatMut<'_, I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the * operator.
source§

fn mul(self, other: Scale<RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<Scale<RhsE>> for SparseRowMatRef<'_, I, LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Scale<RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<SparseColMat<I, RhsE>> for Scale<LhsE>

§

type Output = SparseColMat<I, E>

The resulting type after applying the * operator.
source§

fn mul(self, other: SparseColMat<I, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<SparseColMatMut<'_, I, RhsE>> for Scale<LhsE>

§

type Output = SparseColMat<I, E>

The resulting type after applying the * operator.
source§

fn mul(self, other: SparseColMatMut<'_, I, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<SparseColMatRef<'_, I, RhsE>> for Scale<LhsE>

§

type Output = SparseColMat<I, E>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: SparseColMatRef<'_, I, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<SparseRowMat<I, RhsE>> for Scale<LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the * operator.
source§

fn mul(self, other: SparseRowMat<I, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<SparseRowMatMut<'_, I, RhsE>> for Scale<LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the * operator.
source§

fn mul(self, other: SparseRowMatMut<'_, I, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Mul<SparseRowMatRef<'_, I, RhsE>> for Scale<LhsE>

§

type Output = SparseRowMat<I, E>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: SparseRowMatRef<'_, I, RhsE>) -> Self::Output

Performs the * operation. Read more
source§

impl<LhsE: ComplexField, RhsE: Conjugate<Canonical = LhsE>> MulAssign<Scale<RhsE>> for Col<LhsE>

source§

fn mul_assign(&mut self, other: Scale<RhsE>)

Performs the *= operation. Read more
source§

impl<LhsE: ComplexField, RhsE: Conjugate<Canonical = LhsE>> MulAssign<Scale<RhsE>> for ColMut<'_, LhsE>

source§

fn mul_assign(&mut self, rhs: Scale<RhsE>)

Performs the *= operation. Read more
source§

impl<LhsE: ComplexField, RhsE: Conjugate<Canonical = LhsE>> MulAssign<Scale<RhsE>> for Diag<LhsE>

source§

fn mul_assign(&mut self, other: Scale<RhsE>)

Performs the *= operation. Read more
source§

impl<LhsE: ComplexField, RhsE: Conjugate<Canonical = LhsE>> MulAssign<Scale<RhsE>> for DiagMut<'_, LhsE>

source§

fn mul_assign(&mut self, rhs: Scale<RhsE>)

Performs the *= operation. Read more
source§

impl<LhsE: ComplexField, RhsE: Conjugate<Canonical = LhsE>> MulAssign<Scale<RhsE>> for Mat<LhsE>

source§

fn mul_assign(&mut self, other: Scale<RhsE>)

Performs the *= operation. Read more
source§

impl<LhsE: ComplexField, RhsE: Conjugate<Canonical = LhsE>> MulAssign<Scale<RhsE>> for MatMut<'_, LhsE>

source§

fn mul_assign(&mut self, rhs: Scale<RhsE>)

Performs the *= operation. Read more
source§

impl<LhsE: ComplexField, RhsE: Conjugate<Canonical = LhsE>> MulAssign<Scale<RhsE>> for Row<LhsE>

source§

fn mul_assign(&mut self, other: Scale<RhsE>)

Performs the *= operation. Read more
source§

impl<LhsE: ComplexField, RhsE: Conjugate<Canonical = LhsE>> MulAssign<Scale<RhsE>> for RowMut<'_, LhsE>

source§

fn mul_assign(&mut self, rhs: Scale<RhsE>)

Performs the *= operation. Read more
source§

impl<LhsE: ComplexField, RhsE: Conjugate<Canonical = LhsE>> MulAssign<Scale<RhsE>> for Scale<LhsE>

source§

fn mul_assign(&mut self, rhs: Scale<RhsE>)

Performs the *= operation. Read more
source§

impl<E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>> Sub<Scale<RhsE>> for Scale<LhsE>

§

type Output = Scale<E>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Scale<RhsE>) -> Self::Output

Performs the - operation. Read more
source§

impl<LhsE: ComplexField, RhsE: Conjugate<Canonical = LhsE>> SubAssign<Scale<RhsE>> for Scale<LhsE>

source§

fn sub_assign(&mut self, rhs: Scale<RhsE>)

Performs the -= operation. Read more
source§

impl<E: Copy> Copy for Scale<E>

Auto Trait Implementations§

§

impl<E> RefUnwindSafe for Scale<E>
where E: RefUnwindSafe,

§

impl<E> Send for Scale<E>
where E: Send,

§

impl<E> Sync for Scale<E>
where E: Sync,

§

impl<E> Unpin for Scale<E>
where E: Unpin,

§

impl<E> UnwindSafe for Scale<E>
where E: UnwindSafe,

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> 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> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

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

§

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, U> TryFrom<U> for T
where U: Into<T>,

§

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>,

§

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.