MatrixTransposeView

Struct MatrixTransposeView 

Source
pub struct MatrixTransposeView<'a, T, const R: usize, const C: usize, const VR: usize, const VC: usize> { /* private fields */ }
Expand description

A static transposed view of matrix.

Implementations§

Source§

impl<'a, T, const R: usize, const C: usize, const VR: usize, const VC: usize> MatrixTransposeView<'a, T, R, C, VR, VC>

Source

pub fn shape(&self) -> (usize, usize)

Returns the shape of the MatrixTransposeView.

The shape is always equal to (VR, VC).

§Examples
use ferrix::Matrix;

let mat = Matrix::from([[1, 2, 3], [4, 5, 6]]);
let transposed = mat.t();
assert_eq!(transposed.shape(), (3, 2));
Source

pub fn capacity(&self) -> usize

Returns the total number of elements in the MatrixTransposeView.

The total number of elements is always equal to VR * VC.

§Examples
use ferrix::Matrix;

let mat = Matrix::from([[1, 2, 3], [4, 5, 6]]);
let transposed = mat.t();
assert_eq!(transposed.capacity(), 6);
Source

pub fn rows(&self) -> usize

Returns the number of rows in the MatrixTransposeView.

The number of rows is always equal to VR.

§Examples
use ferrix::Matrix;

let mat = Matrix::from([[1, 2, 3], [4, 5, 6]]);
let transposed = mat.t();
assert_eq!(transposed.rows(), 3);
Source

pub fn cols(&self) -> usize

Returns the number of columns in the MatrixTransposeView.

The number of columns is always equal to VC.

§Examples
use ferrix::Matrix;

let mat = Matrix::from([[1, 2, 3], [4, 5, 6]]);
let transposed = mat.t();
assert_eq!(transposed.cols(), 2);
Source

pub fn t(&self) -> MatrixView<'_, T, R, C, VC, VR>

Returns a transposed view of the MatrixTransposeView.

This method returns a MatrixView, which is a read-only view of the MatrixTransposeView transposed.

§Examples
use ferrix::Matrix;

let mat = Matrix::from([[1, 2, 3], [4, 5, 6], [7, 8, 9]]);
let transposed = mat.t();
let original = transposed.t();
assert_eq!(original, mat);

Trait Implementations§

Source§

impl<T: Copy + Add<T, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Add<&Matrix<T, M, N>> for &MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the + operator.
Source§

fn add(self, other: &Matrix<T, M, N>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Add<&Matrix<T, M, N>> for MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the + operator.
Source§

fn add(self, other: &Matrix<T, M, N>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, const A: usize, const B: usize, const M: usize> Add<&MatrixTransposeView<'_, T, A, B, 1, M>> for &RowVector<T, M>

Source§

type Output = RowVector<T, M>

The resulting type after applying the + operator.
Source§

fn add(self, other: &MatrixTransposeView<'_, T, A, B, 1, M>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Add<&MatrixTransposeView<'_, T, A, B, 1, M>> for &RowVectorView<'_, V, T, N, M>

Source§

type Output = RowVector<T, M>

The resulting type after applying the + operator.
Source§

fn add(self, other: &MatrixTransposeView<'_, T, A, B, 1, M>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Add<&MatrixTransposeView<'_, T, A, B, 1, M>> for &RowVectorViewMut<'_, V, T, N, M>

Source§

type Output = RowVector<T, M>

The resulting type after applying the + operator.
Source§

fn add(self, other: &MatrixTransposeView<'_, T, A, B, 1, M>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, const A: usize, const B: usize, const M: usize> Add<&MatrixTransposeView<'_, T, A, B, 1, M>> for RowVector<T, M>

Source§

type Output = RowVector<T, M>

The resulting type after applying the + operator.
Source§

fn add(self, other: &MatrixTransposeView<'_, T, A, B, 1, M>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Add<&MatrixTransposeView<'_, T, A, B, 1, M>> for RowVectorView<'_, V, T, N, M>

Source§

type Output = RowVector<T, M>

The resulting type after applying the + operator.
Source§

fn add(self, other: &MatrixTransposeView<'_, T, A, B, 1, M>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Add<&MatrixTransposeView<'_, T, A, B, 1, M>> for RowVectorViewMut<'_, V, T, N, M>

Source§

type Output = RowVector<T, M>

The resulting type after applying the + operator.
Source§

fn add(self, other: &MatrixTransposeView<'_, T, A, B, 1, M>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, const A: usize, const B: usize, const M: usize> Add<&MatrixTransposeView<'_, T, A, B, M, 1>> for &Vector<T, M>

Source§

type Output = Vector<T, M>

The resulting type after applying the + operator.
Source§

fn add(self, other: &MatrixTransposeView<'_, T, A, B, M, 1>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Add<&MatrixTransposeView<'_, T, A, B, M, 1>> for &VectorView<'_, V, T, N, M>

Source§

type Output = Vector<T, M>

The resulting type after applying the + operator.
Source§

fn add(self, other: &MatrixTransposeView<'_, T, A, B, M, 1>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Add<&MatrixTransposeView<'_, T, A, B, M, 1>> for &VectorViewMut<'_, V, T, N, M>

Source§

type Output = Vector<T, M>

The resulting type after applying the + operator.
Source§

fn add(self, other: &MatrixTransposeView<'_, T, A, B, M, 1>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, const A: usize, const B: usize, const M: usize> Add<&MatrixTransposeView<'_, T, A, B, M, 1>> for Vector<T, M>

Source§

type Output = Vector<T, M>

The resulting type after applying the + operator.
Source§

fn add(self, other: &MatrixTransposeView<'_, T, A, B, M, 1>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Add<&MatrixTransposeView<'_, T, A, B, M, 1>> for VectorView<'_, V, T, N, M>

Source§

type Output = Vector<T, M>

The resulting type after applying the + operator.
Source§

fn add(self, other: &MatrixTransposeView<'_, T, A, B, M, 1>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Add<&MatrixTransposeView<'_, T, A, B, M, 1>> for VectorViewMut<'_, V, T, N, M>

Source§

type Output = Vector<T, M>

The resulting type after applying the + operator.
Source§

fn add(self, other: &MatrixTransposeView<'_, T, A, B, M, 1>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Add<&MatrixTransposeView<'_, T, A, B, M, N>> for &Matrix<T, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the + operator.
Source§

fn add(self, other: &MatrixTransposeView<'_, T, A, B, M, N>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Add<&MatrixTransposeView<'_, T, A, B, M, N>> for Matrix<T, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the + operator.
Source§

fn add(self, other: &MatrixTransposeView<'_, T, A, B, M, N>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> Add<&MatrixTransposeView<'_, T, C, D, M, N>> for &MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the + operator.
Source§

fn add(self, other: &MatrixTransposeView<'_, T, C, D, M, N>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> Add<&MatrixTransposeView<'_, T, C, D, M, N>> for &MatrixTransposeViewMut<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the + operator.
Source§

fn add(self, other: &MatrixTransposeView<'_, T, C, D, M, N>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> Add<&MatrixTransposeView<'_, T, C, D, M, N>> for &MatrixView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the + operator.
Source§

fn add(self, other: &MatrixTransposeView<'_, T, C, D, M, N>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> Add<&MatrixTransposeView<'_, T, C, D, M, N>> for &MatrixViewMut<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the + operator.
Source§

fn add(self, other: &MatrixTransposeView<'_, T, C, D, M, N>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> Add<&MatrixTransposeView<'_, T, C, D, M, N>> for MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the + operator.
Source§

fn add(self, other: &MatrixTransposeView<'_, T, C, D, M, N>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> Add<&MatrixTransposeView<'_, T, C, D, M, N>> for MatrixTransposeViewMut<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the + operator.
Source§

fn add(self, other: &MatrixTransposeView<'_, T, C, D, M, N>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> Add<&MatrixTransposeView<'_, T, C, D, M, N>> for MatrixView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the + operator.
Source§

fn add(self, other: &MatrixTransposeView<'_, T, C, D, M, N>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> Add<&MatrixTransposeView<'_, T, C, D, M, N>> for MatrixViewMut<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the + operator.
Source§

fn add(self, other: &MatrixTransposeView<'_, T, C, D, M, N>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> Add<&MatrixTransposeViewMut<'_, T, C, D, M, N>> for &MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the + operator.
Source§

fn add(self, other: &MatrixTransposeViewMut<'_, T, C, D, M, N>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> Add<&MatrixTransposeViewMut<'_, T, C, D, M, N>> for MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the + operator.
Source§

fn add(self, other: &MatrixTransposeViewMut<'_, T, C, D, M, N>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> Add<&MatrixView<'_, T, C, D, M, N>> for &MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the + operator.
Source§

fn add(self, other: &MatrixView<'_, T, C, D, M, N>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> Add<&MatrixView<'_, T, C, D, M, N>> for MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the + operator.
Source§

fn add(self, other: &MatrixView<'_, T, C, D, M, N>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> Add<&MatrixViewMut<'_, T, C, D, M, N>> for &MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the + operator.
Source§

fn add(self, other: &MatrixViewMut<'_, T, C, D, M, N>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> Add<&MatrixViewMut<'_, T, C, D, M, N>> for MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the + operator.
Source§

fn add(self, other: &MatrixViewMut<'_, T, C, D, M, N>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, const A: usize, const B: usize, const M: usize> Add<&RowVector<T, M>> for &MatrixTransposeView<'_, T, A, B, 1, M>

Source§

type Output = Matrix<T, 1, M>

The resulting type after applying the + operator.
Source§

fn add(self, other: &RowVector<T, M>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, const A: usize, const B: usize, const M: usize> Add<&RowVector<T, M>> for MatrixTransposeView<'_, T, A, B, 1, M>

Source§

type Output = Matrix<T, 1, M>

The resulting type after applying the + operator.
Source§

fn add(self, other: &RowVector<T, M>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Add<&RowVectorView<'_, V, T, N, M>> for &MatrixTransposeView<'_, T, A, B, 1, M>

Source§

type Output = Matrix<T, 1, M>

The resulting type after applying the + operator.
Source§

fn add(self, other: &RowVectorView<'_, V, T, N, M>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Add<&RowVectorView<'_, V, T, N, M>> for MatrixTransposeView<'_, T, A, B, 1, M>

Source§

type Output = Matrix<T, 1, M>

The resulting type after applying the + operator.
Source§

fn add(self, other: &RowVectorView<'_, V, T, N, M>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Add<&RowVectorViewMut<'_, V, T, N, M>> for &MatrixTransposeView<'_, T, A, B, 1, M>

Source§

type Output = Matrix<T, 1, M>

The resulting type after applying the + operator.
Source§

fn add(self, other: &RowVectorViewMut<'_, V, T, N, M>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Add<&RowVectorViewMut<'_, V, T, N, M>> for MatrixTransposeView<'_, T, A, B, 1, M>

Source§

type Output = Matrix<T, 1, M>

The resulting type after applying the + operator.
Source§

fn add(self, other: &RowVectorViewMut<'_, V, T, N, M>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, const A: usize, const B: usize, const M: usize> Add<&Vector<T, M>> for &MatrixTransposeView<'_, T, A, B, M, 1>

Source§

type Output = Matrix<T, M, 1>

The resulting type after applying the + operator.
Source§

fn add(self, other: &Vector<T, M>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, const A: usize, const B: usize, const M: usize> Add<&Vector<T, M>> for MatrixTransposeView<'_, T, A, B, M, 1>

Source§

type Output = Matrix<T, M, 1>

The resulting type after applying the + operator.
Source§

fn add(self, other: &Vector<T, M>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Add<&VectorView<'_, V, T, N, M>> for &MatrixTransposeView<'_, T, A, B, M, 1>

Source§

type Output = Matrix<T, M, 1>

The resulting type after applying the + operator.
Source§

fn add(self, other: &VectorView<'_, V, T, N, M>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Add<&VectorView<'_, V, T, N, M>> for MatrixTransposeView<'_, T, A, B, M, 1>

Source§

type Output = Matrix<T, M, 1>

The resulting type after applying the + operator.
Source§

fn add(self, other: &VectorView<'_, V, T, N, M>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Add<&VectorViewMut<'_, V, T, N, M>> for &MatrixTransposeView<'_, T, A, B, M, 1>

Source§

type Output = Matrix<T, M, 1>

The resulting type after applying the + operator.
Source§

fn add(self, other: &VectorViewMut<'_, V, T, N, M>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Add<&VectorViewMut<'_, V, T, N, M>> for MatrixTransposeView<'_, T, A, B, M, 1>

Source§

type Output = Matrix<T, M, 1>

The resulting type after applying the + operator.
Source§

fn add(self, other: &VectorViewMut<'_, V, T, N, M>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Add<Matrix<T, M, N>> for &MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the + operator.
Source§

fn add(self, other: Matrix<T, M, N>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Add<Matrix<T, M, N>> for MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the + operator.
Source§

fn add(self, other: Matrix<T, M, N>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, const A: usize, const B: usize, const M: usize> Add<MatrixTransposeView<'_, T, A, B, 1, M>> for &RowVector<T, M>

Source§

type Output = RowVector<T, M>

The resulting type after applying the + operator.
Source§

fn add(self, other: MatrixTransposeView<'_, T, A, B, 1, M>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Add<MatrixTransposeView<'_, T, A, B, 1, M>> for &RowVectorView<'_, V, T, N, M>

Source§

type Output = RowVector<T, M>

The resulting type after applying the + operator.
Source§

fn add(self, other: MatrixTransposeView<'_, T, A, B, 1, M>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Add<MatrixTransposeView<'_, T, A, B, 1, M>> for &RowVectorViewMut<'_, V, T, N, M>

Source§

type Output = RowVector<T, M>

The resulting type after applying the + operator.
Source§

fn add(self, other: MatrixTransposeView<'_, T, A, B, 1, M>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, const A: usize, const B: usize, const M: usize> Add<MatrixTransposeView<'_, T, A, B, 1, M>> for RowVector<T, M>

Source§

type Output = RowVector<T, M>

The resulting type after applying the + operator.
Source§

fn add(self, other: MatrixTransposeView<'_, T, A, B, 1, M>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Add<MatrixTransposeView<'_, T, A, B, 1, M>> for RowVectorView<'_, V, T, N, M>

Source§

type Output = RowVector<T, M>

The resulting type after applying the + operator.
Source§

fn add(self, other: MatrixTransposeView<'_, T, A, B, 1, M>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Add<MatrixTransposeView<'_, T, A, B, 1, M>> for RowVectorViewMut<'_, V, T, N, M>

Source§

type Output = RowVector<T, M>

The resulting type after applying the + operator.
Source§

fn add(self, other: MatrixTransposeView<'_, T, A, B, 1, M>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, const A: usize, const B: usize, const M: usize> Add<MatrixTransposeView<'_, T, A, B, M, 1>> for &Vector<T, M>

Source§

type Output = Vector<T, M>

The resulting type after applying the + operator.
Source§

fn add(self, other: MatrixTransposeView<'_, T, A, B, M, 1>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Add<MatrixTransposeView<'_, T, A, B, M, 1>> for &VectorView<'_, V, T, N, M>

Source§

type Output = Vector<T, M>

The resulting type after applying the + operator.
Source§

fn add(self, other: MatrixTransposeView<'_, T, A, B, M, 1>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Add<MatrixTransposeView<'_, T, A, B, M, 1>> for &VectorViewMut<'_, V, T, N, M>

Source§

type Output = Vector<T, M>

The resulting type after applying the + operator.
Source§

fn add(self, other: MatrixTransposeView<'_, T, A, B, M, 1>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, const A: usize, const B: usize, const M: usize> Add<MatrixTransposeView<'_, T, A, B, M, 1>> for Vector<T, M>

Source§

type Output = Vector<T, M>

The resulting type after applying the + operator.
Source§

fn add(self, other: MatrixTransposeView<'_, T, A, B, M, 1>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Add<MatrixTransposeView<'_, T, A, B, M, 1>> for VectorView<'_, V, T, N, M>

Source§

type Output = Vector<T, M>

The resulting type after applying the + operator.
Source§

fn add(self, other: MatrixTransposeView<'_, T, A, B, M, 1>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Add<MatrixTransposeView<'_, T, A, B, M, 1>> for VectorViewMut<'_, V, T, N, M>

Source§

type Output = Vector<T, M>

The resulting type after applying the + operator.
Source§

fn add(self, other: MatrixTransposeView<'_, T, A, B, M, 1>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Add<MatrixTransposeView<'_, T, A, B, M, N>> for &Matrix<T, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the + operator.
Source§

fn add(self, other: MatrixTransposeView<'_, T, A, B, M, N>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Add<MatrixTransposeView<'_, T, A, B, M, N>> for Matrix<T, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the + operator.
Source§

fn add(self, other: MatrixTransposeView<'_, T, A, B, M, N>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> Add<MatrixTransposeView<'_, T, C, D, M, N>> for &MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the + operator.
Source§

fn add(self, other: MatrixTransposeView<'_, T, C, D, M, N>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> Add<MatrixTransposeView<'_, T, C, D, M, N>> for &MatrixTransposeViewMut<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the + operator.
Source§

fn add(self, other: MatrixTransposeView<'_, T, C, D, M, N>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> Add<MatrixTransposeView<'_, T, C, D, M, N>> for &MatrixView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the + operator.
Source§

fn add(self, other: MatrixTransposeView<'_, T, C, D, M, N>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> Add<MatrixTransposeView<'_, T, C, D, M, N>> for &MatrixViewMut<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the + operator.
Source§

fn add(self, other: MatrixTransposeView<'_, T, C, D, M, N>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> Add<MatrixTransposeView<'_, T, C, D, M, N>> for MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the + operator.
Source§

fn add(self, other: MatrixTransposeView<'_, T, C, D, M, N>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> Add<MatrixTransposeView<'_, T, C, D, M, N>> for MatrixTransposeViewMut<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the + operator.
Source§

fn add(self, other: MatrixTransposeView<'_, T, C, D, M, N>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> Add<MatrixTransposeView<'_, T, C, D, M, N>> for MatrixView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the + operator.
Source§

fn add(self, other: MatrixTransposeView<'_, T, C, D, M, N>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> Add<MatrixTransposeView<'_, T, C, D, M, N>> for MatrixViewMut<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the + operator.
Source§

fn add(self, other: MatrixTransposeView<'_, T, C, D, M, N>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> Add<MatrixTransposeViewMut<'_, T, C, D, M, N>> for &MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the + operator.
Source§

fn add(self, other: MatrixTransposeViewMut<'_, T, C, D, M, N>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> Add<MatrixTransposeViewMut<'_, T, C, D, M, N>> for MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the + operator.
Source§

fn add(self, other: MatrixTransposeViewMut<'_, T, C, D, M, N>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> Add<MatrixView<'_, T, C, D, M, N>> for &MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the + operator.
Source§

fn add(self, other: MatrixView<'_, T, C, D, M, N>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> Add<MatrixView<'_, T, C, D, M, N>> for MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the + operator.
Source§

fn add(self, other: MatrixView<'_, T, C, D, M, N>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> Add<MatrixViewMut<'_, T, C, D, M, N>> for &MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the + operator.
Source§

fn add(self, other: MatrixViewMut<'_, T, C, D, M, N>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> Add<MatrixViewMut<'_, T, C, D, M, N>> for MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the + operator.
Source§

fn add(self, other: MatrixViewMut<'_, T, C, D, M, N>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, const A: usize, const B: usize, const M: usize> Add<RowVector<T, M>> for &MatrixTransposeView<'_, T, A, B, 1, M>

Source§

type Output = Matrix<T, 1, M>

The resulting type after applying the + operator.
Source§

fn add(self, other: RowVector<T, M>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, const A: usize, const B: usize, const M: usize> Add<RowVector<T, M>> for MatrixTransposeView<'_, T, A, B, 1, M>

Source§

type Output = Matrix<T, 1, M>

The resulting type after applying the + operator.
Source§

fn add(self, other: RowVector<T, M>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Add<RowVectorView<'_, V, T, N, M>> for &MatrixTransposeView<'_, T, A, B, 1, M>

Source§

type Output = Matrix<T, 1, M>

The resulting type after applying the + operator.
Source§

fn add(self, other: RowVectorView<'_, V, T, N, M>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Add<RowVectorView<'_, V, T, N, M>> for MatrixTransposeView<'_, T, A, B, 1, M>

Source§

type Output = Matrix<T, 1, M>

The resulting type after applying the + operator.
Source§

fn add(self, other: RowVectorView<'_, V, T, N, M>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Add<RowVectorViewMut<'_, V, T, N, M>> for &MatrixTransposeView<'_, T, A, B, 1, M>

Source§

type Output = Matrix<T, 1, M>

The resulting type after applying the + operator.
Source§

fn add(self, other: RowVectorViewMut<'_, V, T, N, M>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Add<RowVectorViewMut<'_, V, T, N, M>> for MatrixTransposeView<'_, T, A, B, 1, M>

Source§

type Output = Matrix<T, 1, M>

The resulting type after applying the + operator.
Source§

fn add(self, other: RowVectorViewMut<'_, V, T, N, M>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Add<T> for &MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the + operator.
Source§

fn add(self, scalar: T) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Add<T> for MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the + operator.
Source§

fn add(self, scalar: T) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, const A: usize, const B: usize, const M: usize> Add<Vector<T, M>> for &MatrixTransposeView<'_, T, A, B, M, 1>

Source§

type Output = Matrix<T, M, 1>

The resulting type after applying the + operator.
Source§

fn add(self, other: Vector<T, M>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, const A: usize, const B: usize, const M: usize> Add<Vector<T, M>> for MatrixTransposeView<'_, T, A, B, M, 1>

Source§

type Output = Matrix<T, M, 1>

The resulting type after applying the + operator.
Source§

fn add(self, other: Vector<T, M>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Add<VectorView<'_, V, T, N, M>> for &MatrixTransposeView<'_, T, A, B, M, 1>

Source§

type Output = Matrix<T, M, 1>

The resulting type after applying the + operator.
Source§

fn add(self, other: VectorView<'_, V, T, N, M>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Add<VectorView<'_, V, T, N, M>> for MatrixTransposeView<'_, T, A, B, M, 1>

Source§

type Output = Matrix<T, M, 1>

The resulting type after applying the + operator.
Source§

fn add(self, other: VectorView<'_, V, T, N, M>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Add<VectorViewMut<'_, V, T, N, M>> for &MatrixTransposeView<'_, T, A, B, M, 1>

Source§

type Output = Matrix<T, M, 1>

The resulting type after applying the + operator.
Source§

fn add(self, other: VectorViewMut<'_, V, T, N, M>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Add<VectorViewMut<'_, V, T, N, M>> for MatrixTransposeView<'_, T, A, B, M, 1>

Source§

type Output = Matrix<T, M, 1>

The resulting type after applying the + operator.
Source§

fn add(self, other: VectorViewMut<'_, V, T, N, M>) -> Self::Output

Performs the + operation. Read more
Source§

impl<T: Copy + AddAssign<T>, const A: usize, const B: usize, const M: usize> AddAssign<&MatrixTransposeView<'_, T, A, B, 1, M>> for RowVector<T, M>

Source§

fn add_assign(&mut self, other: &MatrixTransposeView<'_, T, A, B, 1, M>)

Performs the += operation. Read more
Source§

impl<T: Copy + AddAssign<T>, V: IndexMut<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> AddAssign<&MatrixTransposeView<'_, T, A, B, 1, M>> for RowVectorViewMut<'_, V, T, N, M>

Source§

fn add_assign(&mut self, other: &MatrixTransposeView<'_, T, A, B, 1, M>)

Performs the += operation. Read more
Source§

impl<T: Copy + AddAssign<T>, const A: usize, const B: usize, const M: usize> AddAssign<&MatrixTransposeView<'_, T, A, B, M, 1>> for Vector<T, M>

Source§

fn add_assign(&mut self, other: &MatrixTransposeView<'_, T, A, B, M, 1>)

Performs the += operation. Read more
Source§

impl<T: Copy + AddAssign<T>, V: IndexMut<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> AddAssign<&MatrixTransposeView<'_, T, A, B, M, 1>> for VectorViewMut<'_, V, T, N, M>

Source§

fn add_assign(&mut self, other: &MatrixTransposeView<'_, T, A, B, M, 1>)

Performs the += operation. Read more
Source§

impl<T: Copy + AddAssign<T>, const A: usize, const B: usize, const M: usize, const N: usize> AddAssign<&MatrixTransposeView<'_, T, A, B, M, N>> for Matrix<T, M, N>

Source§

fn add_assign(&mut self, other: &MatrixTransposeView<'_, T, A, B, M, N>)

Performs the += operation. Read more
Source§

impl<T: Copy + AddAssign<T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> AddAssign<&MatrixTransposeView<'_, T, C, D, M, N>> for MatrixTransposeViewMut<'_, T, A, B, M, N>

Source§

fn add_assign(&mut self, other: &MatrixTransposeView<'_, T, C, D, M, N>)

Performs the += operation. Read more
Source§

impl<T: Copy + AddAssign<T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> AddAssign<&MatrixTransposeView<'_, T, C, D, M, N>> for MatrixViewMut<'_, T, A, B, M, N>

Source§

fn add_assign(&mut self, other: &MatrixTransposeView<'_, T, C, D, M, N>)

Performs the += operation. Read more
Source§

impl<T: Copy + AddAssign<T>, const A: usize, const B: usize, const M: usize> AddAssign<MatrixTransposeView<'_, T, A, B, 1, M>> for RowVector<T, M>

Source§

fn add_assign(&mut self, other: MatrixTransposeView<'_, T, A, B, 1, M>)

Performs the += operation. Read more
Source§

impl<T: Copy + AddAssign<T>, V: IndexMut<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> AddAssign<MatrixTransposeView<'_, T, A, B, 1, M>> for RowVectorViewMut<'_, V, T, N, M>

Source§

fn add_assign(&mut self, other: MatrixTransposeView<'_, T, A, B, 1, M>)

Performs the += operation. Read more
Source§

impl<T: Copy + AddAssign<T>, const A: usize, const B: usize, const M: usize> AddAssign<MatrixTransposeView<'_, T, A, B, M, 1>> for Vector<T, M>

Source§

fn add_assign(&mut self, other: MatrixTransposeView<'_, T, A, B, M, 1>)

Performs the += operation. Read more
Source§

impl<T: Copy + AddAssign<T>, V: IndexMut<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> AddAssign<MatrixTransposeView<'_, T, A, B, M, 1>> for VectorViewMut<'_, V, T, N, M>

Source§

fn add_assign(&mut self, other: MatrixTransposeView<'_, T, A, B, M, 1>)

Performs the += operation. Read more
Source§

impl<T: Copy + AddAssign<T>, const A: usize, const B: usize, const M: usize, const N: usize> AddAssign<MatrixTransposeView<'_, T, A, B, M, N>> for Matrix<T, M, N>

Source§

fn add_assign(&mut self, other: MatrixTransposeView<'_, T, A, B, M, N>)

Performs the += operation. Read more
Source§

impl<T: Copy + AddAssign<T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> AddAssign<MatrixTransposeView<'_, T, C, D, M, N>> for MatrixTransposeViewMut<'_, T, A, B, M, N>

Source§

fn add_assign(&mut self, other: MatrixTransposeView<'_, T, C, D, M, N>)

Performs the += operation. Read more
Source§

impl<T: Copy + AddAssign<T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> AddAssign<MatrixTransposeView<'_, T, C, D, M, N>> for MatrixViewMut<'_, T, A, B, M, N>

Source§

fn add_assign(&mut self, other: MatrixTransposeView<'_, T, C, D, M, N>)

Performs the += operation. Read more
Source§

impl<'a, T: Debug, const R: usize, const C: usize, const VR: usize, const VC: usize> Debug for MatrixTransposeView<'a, T, R, C, VR, VC>

Source§

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

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

impl<T: Display, const R: usize, const C: usize, const VR: usize, const VC: usize> Display for MatrixTransposeView<'_, T, R, C, VR, VC>

Source§

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

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

impl<T: Copy + Div<T, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Div<T> for &MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the / operator.
Source§

fn div(self, scalar: T) -> Self::Output

Performs the / operation. Read more
Source§

impl<T: Copy + Div<T, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Div<T> for MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the / operator.
Source§

fn div(self, scalar: T) -> Self::Output

Performs the / operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, const A: usize, const B: usize, const M: usize> DotProduct<&MatrixTransposeView<'_, T, A, B, 1, M>> for &RowVector<T, M>

Source§

type Output = T

Source§

fn dot(self, other: &MatrixTransposeView<'_, T, A, B, 1, M>) -> Self::Output

Computes the dot product of two vectors.
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const N: usize, const M: usize> DotProduct<&MatrixTransposeView<'_, T, A, B, 1, M>> for &RowVectorView<'_, V, T, N, M>

Source§

type Output = T

Source§

fn dot(self, other: &MatrixTransposeView<'_, T, A, B, 1, M>) -> Self::Output

Computes the dot product of two vectors.
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const N: usize, const M: usize> DotProduct<&MatrixTransposeView<'_, T, A, B, 1, M>> for &RowVectorViewMut<'_, V, T, N, M>

Source§

type Output = T

Source§

fn dot(self, other: &MatrixTransposeView<'_, T, A, B, 1, M>) -> Self::Output

Computes the dot product of two vectors.
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, const A: usize, const B: usize, const M: usize> DotProduct<&MatrixTransposeView<'_, T, A, B, 1, M>> for RowVector<T, M>

Source§

type Output = T

Source§

fn dot(self, other: &MatrixTransposeView<'_, T, A, B, 1, M>) -> Self::Output

Computes the dot product of two vectors.
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const N: usize, const M: usize> DotProduct<&MatrixTransposeView<'_, T, A, B, 1, M>> for RowVectorView<'_, V, T, N, M>

Source§

type Output = T

Source§

fn dot(self, other: &MatrixTransposeView<'_, T, A, B, 1, M>) -> Self::Output

Computes the dot product of two vectors.
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const N: usize, const M: usize> DotProduct<&MatrixTransposeView<'_, T, A, B, 1, M>> for RowVectorViewMut<'_, V, T, N, M>

Source§

type Output = T

Source§

fn dot(self, other: &MatrixTransposeView<'_, T, A, B, 1, M>) -> Self::Output

Computes the dot product of two vectors.
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, const A: usize, const B: usize, const M: usize> DotProduct<&MatrixTransposeView<'_, T, A, B, M, 1>> for &Vector<T, M>

Source§

type Output = T

Source§

fn dot(self, other: &MatrixTransposeView<'_, T, A, B, M, 1>) -> Self::Output

Computes the dot product of two vectors.
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const N: usize, const M: usize> DotProduct<&MatrixTransposeView<'_, T, A, B, M, 1>> for &VectorView<'_, V, T, N, M>

Source§

type Output = T

Source§

fn dot(self, other: &MatrixTransposeView<'_, T, A, B, M, 1>) -> Self::Output

Computes the dot product of two vectors.
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const N: usize, const M: usize> DotProduct<&MatrixTransposeView<'_, T, A, B, M, 1>> for &VectorViewMut<'_, V, T, N, M>

Source§

type Output = T

Source§

fn dot(self, other: &MatrixTransposeView<'_, T, A, B, M, 1>) -> Self::Output

Computes the dot product of two vectors.
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, const A: usize, const B: usize, const M: usize> DotProduct<&MatrixTransposeView<'_, T, A, B, M, 1>> for Vector<T, M>

Source§

type Output = T

Source§

fn dot(self, other: &MatrixTransposeView<'_, T, A, B, M, 1>) -> Self::Output

Computes the dot product of two vectors.
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const N: usize, const M: usize> DotProduct<&MatrixTransposeView<'_, T, A, B, M, 1>> for VectorView<'_, V, T, N, M>

Source§

type Output = T

Source§

fn dot(self, other: &MatrixTransposeView<'_, T, A, B, M, 1>) -> Self::Output

Computes the dot product of two vectors.
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const N: usize, const M: usize> DotProduct<&MatrixTransposeView<'_, T, A, B, M, 1>> for VectorViewMut<'_, V, T, N, M>

Source§

type Output = T

Source§

fn dot(self, other: &MatrixTransposeView<'_, T, A, B, M, 1>) -> Self::Output

Computes the dot product of two vectors.
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, const A: usize, const B: usize, const M: usize> DotProduct<MatrixTransposeView<'_, T, A, B, 1, M>> for &RowVector<T, M>

Source§

type Output = T

Source§

fn dot(self, other: MatrixTransposeView<'_, T, A, B, 1, M>) -> Self::Output

Computes the dot product of two vectors.
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const N: usize, const M: usize> DotProduct<MatrixTransposeView<'_, T, A, B, 1, M>> for &RowVectorView<'_, V, T, N, M>

Source§

type Output = T

Source§

fn dot(self, other: MatrixTransposeView<'_, T, A, B, 1, M>) -> Self::Output

Computes the dot product of two vectors.
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const N: usize, const M: usize> DotProduct<MatrixTransposeView<'_, T, A, B, 1, M>> for &RowVectorViewMut<'_, V, T, N, M>

Source§

type Output = T

Source§

fn dot(self, other: MatrixTransposeView<'_, T, A, B, 1, M>) -> Self::Output

Computes the dot product of two vectors.
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, const A: usize, const B: usize, const M: usize> DotProduct<MatrixTransposeView<'_, T, A, B, 1, M>> for RowVector<T, M>

Source§

type Output = T

Source§

fn dot(self, other: MatrixTransposeView<'_, T, A, B, 1, M>) -> Self::Output

Computes the dot product of two vectors.
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const N: usize, const M: usize> DotProduct<MatrixTransposeView<'_, T, A, B, 1, M>> for RowVectorView<'_, V, T, N, M>

Source§

type Output = T

Source§

fn dot(self, other: MatrixTransposeView<'_, T, A, B, 1, M>) -> Self::Output

Computes the dot product of two vectors.
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const N: usize, const M: usize> DotProduct<MatrixTransposeView<'_, T, A, B, 1, M>> for RowVectorViewMut<'_, V, T, N, M>

Source§

type Output = T

Source§

fn dot(self, other: MatrixTransposeView<'_, T, A, B, 1, M>) -> Self::Output

Computes the dot product of two vectors.
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, const A: usize, const B: usize, const M: usize> DotProduct<MatrixTransposeView<'_, T, A, B, M, 1>> for &Vector<T, M>

Source§

type Output = T

Source§

fn dot(self, other: MatrixTransposeView<'_, T, A, B, M, 1>) -> Self::Output

Computes the dot product of two vectors.
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const N: usize, const M: usize> DotProduct<MatrixTransposeView<'_, T, A, B, M, 1>> for &VectorView<'_, V, T, N, M>

Source§

type Output = T

Source§

fn dot(self, other: MatrixTransposeView<'_, T, A, B, M, 1>) -> Self::Output

Computes the dot product of two vectors.
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const N: usize, const M: usize> DotProduct<MatrixTransposeView<'_, T, A, B, M, 1>> for &VectorViewMut<'_, V, T, N, M>

Source§

type Output = T

Source§

fn dot(self, other: MatrixTransposeView<'_, T, A, B, M, 1>) -> Self::Output

Computes the dot product of two vectors.
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, const A: usize, const B: usize, const M: usize> DotProduct<MatrixTransposeView<'_, T, A, B, M, 1>> for Vector<T, M>

Source§

type Output = T

Source§

fn dot(self, other: MatrixTransposeView<'_, T, A, B, M, 1>) -> Self::Output

Computes the dot product of two vectors.
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const N: usize, const M: usize> DotProduct<MatrixTransposeView<'_, T, A, B, M, 1>> for VectorView<'_, V, T, N, M>

Source§

type Output = T

Source§

fn dot(self, other: MatrixTransposeView<'_, T, A, B, M, 1>) -> Self::Output

Computes the dot product of two vectors.
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const N: usize, const M: usize> DotProduct<MatrixTransposeView<'_, T, A, B, M, 1>> for VectorViewMut<'_, V, T, N, M>

Source§

type Output = T

Source§

fn dot(self, other: MatrixTransposeView<'_, T, A, B, M, 1>) -> Self::Output

Computes the dot product of two vectors.
Source§

impl<T: Copy, const A: usize, const B: usize, const N: usize> From<MatrixTransposeView<'_, T, A, B, 1, N>> for RowVector<T, N>

Source§

fn from(matrix: MatrixTransposeView<'_, T, A, B, 1, N>) -> Self

Converts to this type from the input type.
Source§

impl<T: Copy, const A: usize, const B: usize, const N: usize> From<MatrixTransposeView<'_, T, A, B, N, 1>> for Vector<T, N>

Source§

fn from(matrix: MatrixTransposeView<'_, T, A, B, N, 1>) -> Self

Converts to this type from the input type.
Source§

impl<T: Copy, const A: usize, const B: usize, const R: usize, const C: usize> From<MatrixTransposeView<'_, T, A, B, R, C>> for Matrix<T, R, C>

Source§

fn from(view: MatrixTransposeView<'_, T, A, B, R, C>) -> Self

Converts to this type from the input type.
Source§

impl<T, const R: usize, const C: usize, const VR: usize, const VC: usize> Index<(usize, usize)> for MatrixTransposeView<'_, T, R, C, VR, VC>

Source§

type Output = T

The returned type after indexing.
Source§

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

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

impl<T, const R: usize, const C: usize, const VR: usize, const VC: usize> Index<usize> for MatrixTransposeView<'_, T, R, C, VR, VC>

Source§

type Output = T

The returned type after indexing.
Source§

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

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

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize, const P: usize> Mul<&Matrix<T, N, P>> for &MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, P>

The resulting type after applying the * operator.
Source§

fn mul(self, other: &Matrix<T, N, P>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize, const P: usize> Mul<&Matrix<T, N, P>> for MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, P>

The resulting type after applying the * operator.
Source§

fn mul(self, other: &Matrix<T, N, P>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Mul<&MatrixTransposeView<'_, T, A, B, 1, N>> for &Vector<T, M>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the * operator.
Source§

fn mul(self, other: &MatrixTransposeView<'_, T, A, B, 1, N>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Mul<&MatrixTransposeView<'_, T, A, B, 1, N>> for Vector<T, M>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the * operator.
Source§

fn mul(self, other: &MatrixTransposeView<'_, T, A, B, 1, N>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Mul<&MatrixTransposeView<'_, T, A, B, N, M>> for &RowVector<T, N>

Source§

type Output = Matrix<T, 1, M>

The resulting type after applying the * operator.
Source§

fn mul(self, other: &MatrixTransposeView<'_, T, A, B, N, M>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Mul<&MatrixTransposeView<'_, T, A, B, N, M>> for RowVector<T, N>

Source§

type Output = Matrix<T, 1, M>

The resulting type after applying the * operator.
Source§

fn mul(self, other: &MatrixTransposeView<'_, T, A, B, N, M>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize, const P: usize> Mul<&MatrixTransposeView<'_, T, A, B, N, P>> for &Matrix<T, M, N>

Source§

type Output = Matrix<T, M, P>

The resulting type after applying the * operator.
Source§

fn mul(self, other: &MatrixTransposeView<'_, T, A, B, N, P>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize, const P: usize> Mul<&MatrixTransposeView<'_, T, A, B, N, P>> for Matrix<T, M, N>

Source§

type Output = Matrix<T, M, P>

The resulting type after applying the * operator.
Source§

fn mul(self, other: &MatrixTransposeView<'_, T, A, B, N, P>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const C: usize, const M: usize, const N: usize> Mul<&MatrixTransposeView<'_, T, B, C, 1, N>> for &VectorView<'_, V, T, A, M>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the * operator.
Source§

fn mul(self, other: &MatrixTransposeView<'_, T, B, C, 1, N>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const C: usize, const M: usize, const N: usize> Mul<&MatrixTransposeView<'_, T, B, C, 1, N>> for &VectorViewMut<'_, V, T, A, M>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the * operator.
Source§

fn mul(self, other: &MatrixTransposeView<'_, T, B, C, 1, N>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const C: usize, const M: usize, const N: usize> Mul<&MatrixTransposeView<'_, T, B, C, 1, N>> for VectorView<'_, V, T, A, M>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the * operator.
Source§

fn mul(self, other: &MatrixTransposeView<'_, T, B, C, 1, N>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const C: usize, const M: usize, const N: usize> Mul<&MatrixTransposeView<'_, T, B, C, 1, N>> for VectorViewMut<'_, V, T, A, M>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the * operator.
Source§

fn mul(self, other: &MatrixTransposeView<'_, T, B, C, 1, N>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const C: usize, const M: usize, const N: usize> Mul<&MatrixTransposeView<'_, T, B, C, N, M>> for &RowVectorView<'_, V, T, A, N>

Source§

type Output = Matrix<T, 1, M>

The resulting type after applying the * operator.
Source§

fn mul(self, other: &MatrixTransposeView<'_, T, B, C, N, M>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const C: usize, const M: usize, const N: usize> Mul<&MatrixTransposeView<'_, T, B, C, N, M>> for &RowVectorViewMut<'_, V, T, A, N>

Source§

type Output = Matrix<T, 1, M>

The resulting type after applying the * operator.
Source§

fn mul(self, other: &MatrixTransposeView<'_, T, B, C, N, M>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const C: usize, const M: usize, const N: usize> Mul<&MatrixTransposeView<'_, T, B, C, N, M>> for RowVectorView<'_, V, T, A, N>

Source§

type Output = Matrix<T, 1, M>

The resulting type after applying the * operator.
Source§

fn mul(self, other: &MatrixTransposeView<'_, T, B, C, N, M>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const C: usize, const M: usize, const N: usize> Mul<&MatrixTransposeView<'_, T, B, C, N, M>> for RowVectorViewMut<'_, V, T, A, N>

Source§

type Output = Matrix<T, 1, M>

The resulting type after applying the * operator.
Source§

fn mul(self, other: &MatrixTransposeView<'_, T, B, C, N, M>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize, const P: usize> Mul<&MatrixTransposeView<'_, T, C, D, N, P>> for &MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, P>

The resulting type after applying the * operator.
Source§

fn mul(self, other: &MatrixTransposeView<'_, T, C, D, N, P>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize, const P: usize> Mul<&MatrixTransposeView<'_, T, C, D, N, P>> for &MatrixTransposeViewMut<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, P>

The resulting type after applying the * operator.
Source§

fn mul(self, other: &MatrixTransposeView<'_, T, C, D, N, P>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize, const P: usize> Mul<&MatrixTransposeView<'_, T, C, D, N, P>> for &MatrixView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, P>

The resulting type after applying the * operator.
Source§

fn mul(self, other: &MatrixTransposeView<'_, T, C, D, N, P>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize, const P: usize> Mul<&MatrixTransposeView<'_, T, C, D, N, P>> for &MatrixViewMut<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, P>

The resulting type after applying the * operator.
Source§

fn mul(self, other: &MatrixTransposeView<'_, T, C, D, N, P>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize, const P: usize> Mul<&MatrixTransposeView<'_, T, C, D, N, P>> for MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, P>

The resulting type after applying the * operator.
Source§

fn mul(self, other: &MatrixTransposeView<'_, T, C, D, N, P>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize, const P: usize> Mul<&MatrixTransposeView<'_, T, C, D, N, P>> for MatrixTransposeViewMut<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, P>

The resulting type after applying the * operator.
Source§

fn mul(self, other: &MatrixTransposeView<'_, T, C, D, N, P>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize, const P: usize> Mul<&MatrixTransposeView<'_, T, C, D, N, P>> for MatrixView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, P>

The resulting type after applying the * operator.
Source§

fn mul(self, other: &MatrixTransposeView<'_, T, C, D, N, P>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize, const P: usize> Mul<&MatrixTransposeView<'_, T, C, D, N, P>> for MatrixViewMut<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, P>

The resulting type after applying the * operator.
Source§

fn mul(self, other: &MatrixTransposeView<'_, T, C, D, N, P>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize, const P: usize> Mul<&MatrixTransposeViewMut<'_, T, C, D, N, P>> for &MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, P>

The resulting type after applying the * operator.
Source§

fn mul(self, other: &MatrixTransposeViewMut<'_, T, C, D, N, P>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize, const P: usize> Mul<&MatrixTransposeViewMut<'_, T, C, D, N, P>> for MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, P>

The resulting type after applying the * operator.
Source§

fn mul(self, other: &MatrixTransposeViewMut<'_, T, C, D, N, P>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize, const P: usize> Mul<&MatrixView<'_, T, C, D, N, P>> for &MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, P>

The resulting type after applying the * operator.
Source§

fn mul(self, other: &MatrixView<'_, T, C, D, N, P>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize, const P: usize> Mul<&MatrixView<'_, T, C, D, N, P>> for MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, P>

The resulting type after applying the * operator.
Source§

fn mul(self, other: &MatrixView<'_, T, C, D, N, P>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize, const P: usize> Mul<&MatrixViewMut<'_, T, C, D, N, P>> for &MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, P>

The resulting type after applying the * operator.
Source§

fn mul(self, other: &MatrixViewMut<'_, T, C, D, N, P>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize, const P: usize> Mul<&MatrixViewMut<'_, T, C, D, N, P>> for MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, P>

The resulting type after applying the * operator.
Source§

fn mul(self, other: &MatrixViewMut<'_, T, C, D, N, P>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Mul<&RowVector<T, N>> for &MatrixTransposeView<'_, T, A, B, M, 1>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the * operator.
Source§

fn mul(self, other: &RowVector<T, N>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Mul<&RowVector<T, N>> for MatrixTransposeView<'_, T, A, B, M, 1>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the * operator.
Source§

fn mul(self, other: &RowVector<T, N>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const C: usize, const M: usize, const N: usize> Mul<&RowVectorView<'_, V, T, C, N>> for &MatrixTransposeView<'_, T, A, B, M, 1>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the * operator.
Source§

fn mul(self, other: &RowVectorView<'_, V, T, C, N>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const C: usize, const M: usize, const N: usize> Mul<&RowVectorView<'_, V, T, C, N>> for MatrixTransposeView<'_, T, A, B, M, 1>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the * operator.
Source§

fn mul(self, other: &RowVectorView<'_, V, T, C, N>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const C: usize, const M: usize, const N: usize> Mul<&RowVectorViewMut<'_, V, T, C, N>> for &MatrixTransposeView<'_, T, A, B, M, 1>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the * operator.
Source§

fn mul(self, other: &RowVectorViewMut<'_, V, T, C, N>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const C: usize, const M: usize, const N: usize> Mul<&RowVectorViewMut<'_, V, T, C, N>> for MatrixTransposeView<'_, T, A, B, M, 1>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the * operator.
Source§

fn mul(self, other: &RowVectorViewMut<'_, V, T, C, N>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Mul<&Vector<T, N>> for &MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, 1>

The resulting type after applying the * operator.
Source§

fn mul(self, other: &Vector<T, N>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Mul<&Vector<T, N>> for MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, 1>

The resulting type after applying the * operator.
Source§

fn mul(self, other: &Vector<T, N>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const C: usize, const M: usize, const N: usize> Mul<&VectorView<'_, V, T, C, N>> for &MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, 1>

The resulting type after applying the * operator.
Source§

fn mul(self, other: &VectorView<'_, V, T, C, N>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const C: usize, const M: usize, const N: usize> Mul<&VectorView<'_, V, T, C, N>> for MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, 1>

The resulting type after applying the * operator.
Source§

fn mul(self, other: &VectorView<'_, V, T, C, N>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const C: usize, const M: usize, const N: usize> Mul<&VectorViewMut<'_, V, T, C, N>> for &MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, 1>

The resulting type after applying the * operator.
Source§

fn mul(self, other: &VectorViewMut<'_, V, T, C, N>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const C: usize, const M: usize, const N: usize> Mul<&VectorViewMut<'_, V, T, C, N>> for MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, 1>

The resulting type after applying the * operator.
Source§

fn mul(self, other: &VectorViewMut<'_, V, T, C, N>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize, const P: usize> Mul<Matrix<T, N, P>> for &MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, P>

The resulting type after applying the * operator.
Source§

fn mul(self, other: Matrix<T, N, P>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize, const P: usize> Mul<Matrix<T, N, P>> for MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, P>

The resulting type after applying the * operator.
Source§

fn mul(self, other: Matrix<T, N, P>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Mul<MatrixTransposeView<'_, T, A, B, 1, N>> for &Vector<T, M>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the * operator.
Source§

fn mul(self, other: MatrixTransposeView<'_, T, A, B, 1, N>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Mul<MatrixTransposeView<'_, T, A, B, 1, N>> for Vector<T, M>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the * operator.
Source§

fn mul(self, other: MatrixTransposeView<'_, T, A, B, 1, N>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Mul<MatrixTransposeView<'_, T, A, B, N, M>> for &RowVector<T, N>

Source§

type Output = Matrix<T, 1, M>

The resulting type after applying the * operator.
Source§

fn mul(self, other: MatrixTransposeView<'_, T, A, B, N, M>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Mul<MatrixTransposeView<'_, T, A, B, N, M>> for RowVector<T, N>

Source§

type Output = Matrix<T, 1, M>

The resulting type after applying the * operator.
Source§

fn mul(self, other: MatrixTransposeView<'_, T, A, B, N, M>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize, const P: usize> Mul<MatrixTransposeView<'_, T, A, B, N, P>> for &Matrix<T, M, N>

Source§

type Output = Matrix<T, M, P>

The resulting type after applying the * operator.
Source§

fn mul(self, other: MatrixTransposeView<'_, T, A, B, N, P>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize, const P: usize> Mul<MatrixTransposeView<'_, T, A, B, N, P>> for Matrix<T, M, N>

Source§

type Output = Matrix<T, M, P>

The resulting type after applying the * operator.
Source§

fn mul(self, other: MatrixTransposeView<'_, T, A, B, N, P>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const C: usize, const M: usize, const N: usize> Mul<MatrixTransposeView<'_, T, B, C, 1, N>> for &VectorView<'_, V, T, A, M>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the * operator.
Source§

fn mul(self, other: MatrixTransposeView<'_, T, B, C, 1, N>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const C: usize, const M: usize, const N: usize> Mul<MatrixTransposeView<'_, T, B, C, 1, N>> for &VectorViewMut<'_, V, T, A, M>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the * operator.
Source§

fn mul(self, other: MatrixTransposeView<'_, T, B, C, 1, N>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const C: usize, const M: usize, const N: usize> Mul<MatrixTransposeView<'_, T, B, C, 1, N>> for VectorView<'_, V, T, A, M>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the * operator.
Source§

fn mul(self, other: MatrixTransposeView<'_, T, B, C, 1, N>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const C: usize, const M: usize, const N: usize> Mul<MatrixTransposeView<'_, T, B, C, 1, N>> for VectorViewMut<'_, V, T, A, M>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the * operator.
Source§

fn mul(self, other: MatrixTransposeView<'_, T, B, C, 1, N>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const C: usize, const M: usize, const N: usize> Mul<MatrixTransposeView<'_, T, B, C, N, M>> for &RowVectorView<'_, V, T, A, N>

Source§

type Output = Matrix<T, 1, M>

The resulting type after applying the * operator.
Source§

fn mul(self, other: MatrixTransposeView<'_, T, B, C, N, M>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const C: usize, const M: usize, const N: usize> Mul<MatrixTransposeView<'_, T, B, C, N, M>> for &RowVectorViewMut<'_, V, T, A, N>

Source§

type Output = Matrix<T, 1, M>

The resulting type after applying the * operator.
Source§

fn mul(self, other: MatrixTransposeView<'_, T, B, C, N, M>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const C: usize, const M: usize, const N: usize> Mul<MatrixTransposeView<'_, T, B, C, N, M>> for RowVectorView<'_, V, T, A, N>

Source§

type Output = Matrix<T, 1, M>

The resulting type after applying the * operator.
Source§

fn mul(self, other: MatrixTransposeView<'_, T, B, C, N, M>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const C: usize, const M: usize, const N: usize> Mul<MatrixTransposeView<'_, T, B, C, N, M>> for RowVectorViewMut<'_, V, T, A, N>

Source§

type Output = Matrix<T, 1, M>

The resulting type after applying the * operator.
Source§

fn mul(self, other: MatrixTransposeView<'_, T, B, C, N, M>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize, const P: usize> Mul<MatrixTransposeView<'_, T, C, D, N, P>> for &MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, P>

The resulting type after applying the * operator.
Source§

fn mul(self, other: MatrixTransposeView<'_, T, C, D, N, P>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize, const P: usize> Mul<MatrixTransposeView<'_, T, C, D, N, P>> for &MatrixTransposeViewMut<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, P>

The resulting type after applying the * operator.
Source§

fn mul(self, other: MatrixTransposeView<'_, T, C, D, N, P>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize, const P: usize> Mul<MatrixTransposeView<'_, T, C, D, N, P>> for &MatrixView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, P>

The resulting type after applying the * operator.
Source§

fn mul(self, other: MatrixTransposeView<'_, T, C, D, N, P>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize, const P: usize> Mul<MatrixTransposeView<'_, T, C, D, N, P>> for &MatrixViewMut<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, P>

The resulting type after applying the * operator.
Source§

fn mul(self, other: MatrixTransposeView<'_, T, C, D, N, P>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize, const P: usize> Mul<MatrixTransposeView<'_, T, C, D, N, P>> for MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, P>

The resulting type after applying the * operator.
Source§

fn mul(self, other: MatrixTransposeView<'_, T, C, D, N, P>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize, const P: usize> Mul<MatrixTransposeView<'_, T, C, D, N, P>> for MatrixTransposeViewMut<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, P>

The resulting type after applying the * operator.
Source§

fn mul(self, other: MatrixTransposeView<'_, T, C, D, N, P>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize, const P: usize> Mul<MatrixTransposeView<'_, T, C, D, N, P>> for MatrixView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, P>

The resulting type after applying the * operator.
Source§

fn mul(self, other: MatrixTransposeView<'_, T, C, D, N, P>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize, const P: usize> Mul<MatrixTransposeView<'_, T, C, D, N, P>> for MatrixViewMut<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, P>

The resulting type after applying the * operator.
Source§

fn mul(self, other: MatrixTransposeView<'_, T, C, D, N, P>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize, const P: usize> Mul<MatrixTransposeViewMut<'_, T, C, D, N, P>> for &MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, P>

The resulting type after applying the * operator.
Source§

fn mul(self, other: MatrixTransposeViewMut<'_, T, C, D, N, P>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize, const P: usize> Mul<MatrixTransposeViewMut<'_, T, C, D, N, P>> for MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, P>

The resulting type after applying the * operator.
Source§

fn mul(self, other: MatrixTransposeViewMut<'_, T, C, D, N, P>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize, const P: usize> Mul<MatrixView<'_, T, C, D, N, P>> for &MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, P>

The resulting type after applying the * operator.
Source§

fn mul(self, other: MatrixView<'_, T, C, D, N, P>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize, const P: usize> Mul<MatrixView<'_, T, C, D, N, P>> for MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, P>

The resulting type after applying the * operator.
Source§

fn mul(self, other: MatrixView<'_, T, C, D, N, P>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize, const P: usize> Mul<MatrixViewMut<'_, T, C, D, N, P>> for &MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, P>

The resulting type after applying the * operator.
Source§

fn mul(self, other: MatrixViewMut<'_, T, C, D, N, P>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize, const P: usize> Mul<MatrixViewMut<'_, T, C, D, N, P>> for MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, P>

The resulting type after applying the * operator.
Source§

fn mul(self, other: MatrixViewMut<'_, T, C, D, N, P>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Mul<RowVector<T, N>> for &MatrixTransposeView<'_, T, A, B, M, 1>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the * operator.
Source§

fn mul(self, other: RowVector<T, N>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Mul<RowVector<T, N>> for MatrixTransposeView<'_, T, A, B, M, 1>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the * operator.
Source§

fn mul(self, other: RowVector<T, N>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const C: usize, const M: usize, const N: usize> Mul<RowVectorView<'_, V, T, C, N>> for &MatrixTransposeView<'_, T, A, B, M, 1>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the * operator.
Source§

fn mul(self, other: RowVectorView<'_, V, T, C, N>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const C: usize, const M: usize, const N: usize> Mul<RowVectorView<'_, V, T, C, N>> for MatrixTransposeView<'_, T, A, B, M, 1>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the * operator.
Source§

fn mul(self, other: RowVectorView<'_, V, T, C, N>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const C: usize, const M: usize, const N: usize> Mul<RowVectorViewMut<'_, V, T, C, N>> for &MatrixTransposeView<'_, T, A, B, M, 1>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the * operator.
Source§

fn mul(self, other: RowVectorViewMut<'_, V, T, C, N>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const C: usize, const M: usize, const N: usize> Mul<RowVectorViewMut<'_, V, T, C, N>> for MatrixTransposeView<'_, T, A, B, M, 1>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the * operator.
Source§

fn mul(self, other: RowVectorViewMut<'_, V, T, C, N>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Mul<T, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Mul<T> for &MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the * operator.
Source§

fn mul(self, scalar: T) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Mul<T, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Mul<T> for MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the * operator.
Source§

fn mul(self, scalar: T) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Mul<Vector<T, N>> for &MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, 1>

The resulting type after applying the * operator.
Source§

fn mul(self, other: Vector<T, N>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Mul<Vector<T, N>> for MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, 1>

The resulting type after applying the * operator.
Source§

fn mul(self, other: Vector<T, N>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const C: usize, const M: usize, const N: usize> Mul<VectorView<'_, V, T, C, N>> for &MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, 1>

The resulting type after applying the * operator.
Source§

fn mul(self, other: VectorView<'_, V, T, C, N>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const C: usize, const M: usize, const N: usize> Mul<VectorView<'_, V, T, C, N>> for MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, 1>

The resulting type after applying the * operator.
Source§

fn mul(self, other: VectorView<'_, V, T, C, N>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const C: usize, const M: usize, const N: usize> Mul<VectorViewMut<'_, V, T, C, N>> for &MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, 1>

The resulting type after applying the * operator.
Source§

fn mul(self, other: VectorViewMut<'_, V, T, C, N>) -> Self::Output

Performs the * operation. Read more
Source§

impl<T: Copy + Zero + Mul<T, Output = T> + Add<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const C: usize, const M: usize, const N: usize> Mul<VectorViewMut<'_, V, T, C, N>> for MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, 1>

The resulting type after applying the * operator.
Source§

fn mul(self, other: VectorViewMut<'_, V, T, C, N>) -> Self::Output

Performs the * operation. Read more
Source§

impl<'a, T: PartialEq, const R: usize, const C: usize, const VR: usize, const VC: usize> PartialEq<Matrix<T, VR, VC>> for MatrixTransposeView<'a, T, R, C, VR, VC>

Source§

fn eq(&self, other: &Matrix<T, VR, VC>) -> bool

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

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<T: PartialEq, const R: usize, const C: usize, const VR: usize, const VC: usize> PartialEq<MatrixTransposeView<'_, T, R, C, VR, VC>> for Matrix<T, VR, VC>

Source§

fn eq(&self, other: &MatrixTransposeView<'_, T, R, C, VR, VC>) -> bool

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

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<'a, T: PartialEq, const A: usize, const B: usize, const R: usize, const C: usize, const VR: usize, const VC: usize> PartialEq<MatrixTransposeView<'a, T, A, B, VR, VC>> for MatrixTransposeView<'a, T, R, C, VR, VC>

Source§

fn eq(&self, other: &MatrixTransposeView<'a, T, A, B, VR, VC>) -> bool

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

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<'a, T: PartialEq, const A: usize, const B: usize, const R: usize, const C: usize, const VR: usize, const VC: usize> PartialEq<MatrixTransposeView<'a, T, A, B, VR, VC>> for MatrixTransposeViewMut<'a, T, R, C, VR, VC>

Source§

fn eq(&self, other: &MatrixTransposeView<'a, T, A, B, VR, VC>) -> bool

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

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<'a, T: PartialEq, const A: usize, const B: usize, const R: usize, const C: usize, const VR: usize, const VC: usize> PartialEq<MatrixTransposeView<'a, T, A, B, VR, VC>> for MatrixView<'a, T, R, C, VR, VC>

Source§

fn eq(&self, other: &MatrixTransposeView<'a, T, A, B, VR, VC>) -> bool

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

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<'a, T: PartialEq, const A: usize, const B: usize, const R: usize, const C: usize, const VR: usize, const VC: usize> PartialEq<MatrixTransposeView<'a, T, A, B, VR, VC>> for MatrixViewMut<'a, T, R, C, VR, VC>

Source§

fn eq(&self, other: &MatrixTransposeView<'a, T, A, B, VR, VC>) -> bool

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

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<'a, T: PartialEq, const A: usize, const B: usize, const R: usize, const C: usize, const VR: usize, const VC: usize> PartialEq<MatrixTransposeViewMut<'a, T, A, B, VR, VC>> for MatrixTransposeView<'a, T, R, C, VR, VC>

Source§

fn eq(&self, other: &MatrixTransposeViewMut<'a, T, A, B, VR, VC>) -> bool

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

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<'a, T: PartialEq, const A: usize, const B: usize, const R: usize, const C: usize, const VR: usize, const VC: usize> PartialEq<MatrixView<'a, T, A, B, VR, VC>> for MatrixTransposeView<'a, T, R, C, VR, VC>

Source§

fn eq(&self, other: &MatrixView<'a, T, A, B, VR, VC>) -> bool

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

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<'a, T: PartialEq, const A: usize, const B: usize, const R: usize, const C: usize, const VR: usize, const VC: usize> PartialEq<MatrixViewMut<'a, T, A, B, VR, VC>> for MatrixTransposeView<'a, T, R, C, VR, VC>

Source§

fn eq(&self, other: &MatrixViewMut<'a, T, A, B, VR, VC>) -> bool

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

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<T: Copy + Sub<T, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Sub<&Matrix<T, M, N>> for &MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the - operator.
Source§

fn sub(self, other: &Matrix<T, M, N>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Sub<&Matrix<T, M, N>> for MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the - operator.
Source§

fn sub(self, other: &Matrix<T, M, N>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, const A: usize, const B: usize, const M: usize> Sub<&MatrixTransposeView<'_, T, A, B, 1, M>> for &RowVector<T, M>

Source§

type Output = RowVector<T, M>

The resulting type after applying the - operator.
Source§

fn sub(self, other: &MatrixTransposeView<'_, T, A, B, 1, M>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Sub<&MatrixTransposeView<'_, T, A, B, 1, M>> for &RowVectorView<'_, V, T, N, M>

Source§

type Output = RowVector<T, M>

The resulting type after applying the - operator.
Source§

fn sub(self, other: &MatrixTransposeView<'_, T, A, B, 1, M>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Sub<&MatrixTransposeView<'_, T, A, B, 1, M>> for &RowVectorViewMut<'_, V, T, N, M>

Source§

type Output = RowVector<T, M>

The resulting type after applying the - operator.
Source§

fn sub(self, other: &MatrixTransposeView<'_, T, A, B, 1, M>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, const A: usize, const B: usize, const M: usize> Sub<&MatrixTransposeView<'_, T, A, B, 1, M>> for RowVector<T, M>

Source§

type Output = RowVector<T, M>

The resulting type after applying the - operator.
Source§

fn sub(self, other: &MatrixTransposeView<'_, T, A, B, 1, M>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Sub<&MatrixTransposeView<'_, T, A, B, 1, M>> for RowVectorView<'_, V, T, N, M>

Source§

type Output = RowVector<T, M>

The resulting type after applying the - operator.
Source§

fn sub(self, other: &MatrixTransposeView<'_, T, A, B, 1, M>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Sub<&MatrixTransposeView<'_, T, A, B, 1, M>> for RowVectorViewMut<'_, V, T, N, M>

Source§

type Output = RowVector<T, M>

The resulting type after applying the - operator.
Source§

fn sub(self, other: &MatrixTransposeView<'_, T, A, B, 1, M>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, const A: usize, const B: usize, const M: usize> Sub<&MatrixTransposeView<'_, T, A, B, M, 1>> for &Vector<T, M>

Source§

type Output = Vector<T, M>

The resulting type after applying the - operator.
Source§

fn sub(self, other: &MatrixTransposeView<'_, T, A, B, M, 1>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Sub<&MatrixTransposeView<'_, T, A, B, M, 1>> for &VectorView<'_, V, T, N, M>

Source§

type Output = Vector<T, M>

The resulting type after applying the - operator.
Source§

fn sub(self, other: &MatrixTransposeView<'_, T, A, B, M, 1>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Sub<&MatrixTransposeView<'_, T, A, B, M, 1>> for &VectorViewMut<'_, V, T, N, M>

Source§

type Output = Vector<T, M>

The resulting type after applying the - operator.
Source§

fn sub(self, other: &MatrixTransposeView<'_, T, A, B, M, 1>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, const A: usize, const B: usize, const M: usize> Sub<&MatrixTransposeView<'_, T, A, B, M, 1>> for Vector<T, M>

Source§

type Output = Vector<T, M>

The resulting type after applying the - operator.
Source§

fn sub(self, other: &MatrixTransposeView<'_, T, A, B, M, 1>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Sub<&MatrixTransposeView<'_, T, A, B, M, 1>> for VectorView<'_, V, T, N, M>

Source§

type Output = Vector<T, M>

The resulting type after applying the - operator.
Source§

fn sub(self, other: &MatrixTransposeView<'_, T, A, B, M, 1>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Sub<&MatrixTransposeView<'_, T, A, B, M, 1>> for VectorViewMut<'_, V, T, N, M>

Source§

type Output = Vector<T, M>

The resulting type after applying the - operator.
Source§

fn sub(self, other: &MatrixTransposeView<'_, T, A, B, M, 1>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Sub<&MatrixTransposeView<'_, T, A, B, M, N>> for &Matrix<T, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the - operator.
Source§

fn sub(self, other: &MatrixTransposeView<'_, T, A, B, M, N>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Sub<&MatrixTransposeView<'_, T, A, B, M, N>> for Matrix<T, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the - operator.
Source§

fn sub(self, other: &MatrixTransposeView<'_, T, A, B, M, N>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> Sub<&MatrixTransposeView<'_, T, C, D, M, N>> for &MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the - operator.
Source§

fn sub(self, other: &MatrixTransposeView<'_, T, C, D, M, N>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> Sub<&MatrixTransposeView<'_, T, C, D, M, N>> for &MatrixTransposeViewMut<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the - operator.
Source§

fn sub(self, other: &MatrixTransposeView<'_, T, C, D, M, N>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> Sub<&MatrixTransposeView<'_, T, C, D, M, N>> for &MatrixView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the - operator.
Source§

fn sub(self, other: &MatrixTransposeView<'_, T, C, D, M, N>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> Sub<&MatrixTransposeView<'_, T, C, D, M, N>> for &MatrixViewMut<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the - operator.
Source§

fn sub(self, other: &MatrixTransposeView<'_, T, C, D, M, N>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> Sub<&MatrixTransposeView<'_, T, C, D, M, N>> for MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the - operator.
Source§

fn sub(self, other: &MatrixTransposeView<'_, T, C, D, M, N>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> Sub<&MatrixTransposeView<'_, T, C, D, M, N>> for MatrixTransposeViewMut<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the - operator.
Source§

fn sub(self, other: &MatrixTransposeView<'_, T, C, D, M, N>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> Sub<&MatrixTransposeView<'_, T, C, D, M, N>> for MatrixView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the - operator.
Source§

fn sub(self, other: &MatrixTransposeView<'_, T, C, D, M, N>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> Sub<&MatrixTransposeView<'_, T, C, D, M, N>> for MatrixViewMut<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the - operator.
Source§

fn sub(self, other: &MatrixTransposeView<'_, T, C, D, M, N>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> Sub<&MatrixTransposeViewMut<'_, T, C, D, M, N>> for &MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the - operator.
Source§

fn sub(self, other: &MatrixTransposeViewMut<'_, T, C, D, M, N>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> Sub<&MatrixTransposeViewMut<'_, T, C, D, M, N>> for MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the - operator.
Source§

fn sub(self, other: &MatrixTransposeViewMut<'_, T, C, D, M, N>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> Sub<&MatrixView<'_, T, C, D, M, N>> for &MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the - operator.
Source§

fn sub(self, other: &MatrixView<'_, T, C, D, M, N>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> Sub<&MatrixView<'_, T, C, D, M, N>> for MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the - operator.
Source§

fn sub(self, other: &MatrixView<'_, T, C, D, M, N>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> Sub<&MatrixViewMut<'_, T, C, D, M, N>> for &MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the - operator.
Source§

fn sub(self, other: &MatrixViewMut<'_, T, C, D, M, N>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> Sub<&MatrixViewMut<'_, T, C, D, M, N>> for MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the - operator.
Source§

fn sub(self, other: &MatrixViewMut<'_, T, C, D, M, N>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, const A: usize, const B: usize, const M: usize> Sub<&RowVector<T, M>> for &MatrixTransposeView<'_, T, A, B, 1, M>

Source§

type Output = Matrix<T, 1, M>

The resulting type after applying the - operator.
Source§

fn sub(self, other: &RowVector<T, M>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, const A: usize, const B: usize, const M: usize> Sub<&RowVector<T, M>> for MatrixTransposeView<'_, T, A, B, 1, M>

Source§

type Output = Matrix<T, 1, M>

The resulting type after applying the - operator.
Source§

fn sub(self, other: &RowVector<T, M>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Sub<&RowVectorView<'_, V, T, N, M>> for &MatrixTransposeView<'_, T, A, B, 1, M>

Source§

type Output = Matrix<T, 1, M>

The resulting type after applying the - operator.
Source§

fn sub(self, other: &RowVectorView<'_, V, T, N, M>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Sub<&RowVectorView<'_, V, T, N, M>> for MatrixTransposeView<'_, T, A, B, 1, M>

Source§

type Output = Matrix<T, 1, M>

The resulting type after applying the - operator.
Source§

fn sub(self, other: &RowVectorView<'_, V, T, N, M>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Sub<&RowVectorViewMut<'_, V, T, N, M>> for &MatrixTransposeView<'_, T, A, B, 1, M>

Source§

type Output = Matrix<T, 1, M>

The resulting type after applying the - operator.
Source§

fn sub(self, other: &RowVectorViewMut<'_, V, T, N, M>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Sub<&RowVectorViewMut<'_, V, T, N, M>> for MatrixTransposeView<'_, T, A, B, 1, M>

Source§

type Output = Matrix<T, 1, M>

The resulting type after applying the - operator.
Source§

fn sub(self, other: &RowVectorViewMut<'_, V, T, N, M>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, const A: usize, const B: usize, const M: usize> Sub<&Vector<T, M>> for &MatrixTransposeView<'_, T, A, B, M, 1>

Source§

type Output = Matrix<T, M, 1>

The resulting type after applying the - operator.
Source§

fn sub(self, other: &Vector<T, M>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, const A: usize, const B: usize, const M: usize> Sub<&Vector<T, M>> for MatrixTransposeView<'_, T, A, B, M, 1>

Source§

type Output = Matrix<T, M, 1>

The resulting type after applying the - operator.
Source§

fn sub(self, other: &Vector<T, M>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Sub<&VectorView<'_, V, T, N, M>> for &MatrixTransposeView<'_, T, A, B, M, 1>

Source§

type Output = Matrix<T, M, 1>

The resulting type after applying the - operator.
Source§

fn sub(self, other: &VectorView<'_, V, T, N, M>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Sub<&VectorView<'_, V, T, N, M>> for MatrixTransposeView<'_, T, A, B, M, 1>

Source§

type Output = Matrix<T, M, 1>

The resulting type after applying the - operator.
Source§

fn sub(self, other: &VectorView<'_, V, T, N, M>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Sub<&VectorViewMut<'_, V, T, N, M>> for &MatrixTransposeView<'_, T, A, B, M, 1>

Source§

type Output = Matrix<T, M, 1>

The resulting type after applying the - operator.
Source§

fn sub(self, other: &VectorViewMut<'_, V, T, N, M>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Sub<&VectorViewMut<'_, V, T, N, M>> for MatrixTransposeView<'_, T, A, B, M, 1>

Source§

type Output = Matrix<T, M, 1>

The resulting type after applying the - operator.
Source§

fn sub(self, other: &VectorViewMut<'_, V, T, N, M>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Sub<Matrix<T, M, N>> for &MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the - operator.
Source§

fn sub(self, other: Matrix<T, M, N>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Sub<Matrix<T, M, N>> for MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the - operator.
Source§

fn sub(self, other: Matrix<T, M, N>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, const A: usize, const B: usize, const M: usize> Sub<MatrixTransposeView<'_, T, A, B, 1, M>> for &RowVector<T, M>

Source§

type Output = RowVector<T, M>

The resulting type after applying the - operator.
Source§

fn sub(self, other: MatrixTransposeView<'_, T, A, B, 1, M>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Sub<MatrixTransposeView<'_, T, A, B, 1, M>> for &RowVectorView<'_, V, T, N, M>

Source§

type Output = RowVector<T, M>

The resulting type after applying the - operator.
Source§

fn sub(self, other: MatrixTransposeView<'_, T, A, B, 1, M>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Sub<MatrixTransposeView<'_, T, A, B, 1, M>> for &RowVectorViewMut<'_, V, T, N, M>

Source§

type Output = RowVector<T, M>

The resulting type after applying the - operator.
Source§

fn sub(self, other: MatrixTransposeView<'_, T, A, B, 1, M>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, const A: usize, const B: usize, const M: usize> Sub<MatrixTransposeView<'_, T, A, B, 1, M>> for RowVector<T, M>

Source§

type Output = RowVector<T, M>

The resulting type after applying the - operator.
Source§

fn sub(self, other: MatrixTransposeView<'_, T, A, B, 1, M>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Sub<MatrixTransposeView<'_, T, A, B, 1, M>> for RowVectorView<'_, V, T, N, M>

Source§

type Output = RowVector<T, M>

The resulting type after applying the - operator.
Source§

fn sub(self, other: MatrixTransposeView<'_, T, A, B, 1, M>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Sub<MatrixTransposeView<'_, T, A, B, 1, M>> for RowVectorViewMut<'_, V, T, N, M>

Source§

type Output = RowVector<T, M>

The resulting type after applying the - operator.
Source§

fn sub(self, other: MatrixTransposeView<'_, T, A, B, 1, M>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, const A: usize, const B: usize, const M: usize> Sub<MatrixTransposeView<'_, T, A, B, M, 1>> for &Vector<T, M>

Source§

type Output = Vector<T, M>

The resulting type after applying the - operator.
Source§

fn sub(self, other: MatrixTransposeView<'_, T, A, B, M, 1>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Sub<MatrixTransposeView<'_, T, A, B, M, 1>> for &VectorView<'_, V, T, N, M>

Source§

type Output = Vector<T, M>

The resulting type after applying the - operator.
Source§

fn sub(self, other: MatrixTransposeView<'_, T, A, B, M, 1>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Sub<MatrixTransposeView<'_, T, A, B, M, 1>> for &VectorViewMut<'_, V, T, N, M>

Source§

type Output = Vector<T, M>

The resulting type after applying the - operator.
Source§

fn sub(self, other: MatrixTransposeView<'_, T, A, B, M, 1>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, const A: usize, const B: usize, const M: usize> Sub<MatrixTransposeView<'_, T, A, B, M, 1>> for Vector<T, M>

Source§

type Output = Vector<T, M>

The resulting type after applying the - operator.
Source§

fn sub(self, other: MatrixTransposeView<'_, T, A, B, M, 1>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Sub<MatrixTransposeView<'_, T, A, B, M, 1>> for VectorView<'_, V, T, N, M>

Source§

type Output = Vector<T, M>

The resulting type after applying the - operator.
Source§

fn sub(self, other: MatrixTransposeView<'_, T, A, B, M, 1>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Sub<MatrixTransposeView<'_, T, A, B, M, 1>> for VectorViewMut<'_, V, T, N, M>

Source§

type Output = Vector<T, M>

The resulting type after applying the - operator.
Source§

fn sub(self, other: MatrixTransposeView<'_, T, A, B, M, 1>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Sub<MatrixTransposeView<'_, T, A, B, M, N>> for &Matrix<T, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the - operator.
Source§

fn sub(self, other: MatrixTransposeView<'_, T, A, B, M, N>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Sub<MatrixTransposeView<'_, T, A, B, M, N>> for Matrix<T, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the - operator.
Source§

fn sub(self, other: MatrixTransposeView<'_, T, A, B, M, N>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> Sub<MatrixTransposeView<'_, T, C, D, M, N>> for &MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the - operator.
Source§

fn sub(self, other: MatrixTransposeView<'_, T, C, D, M, N>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> Sub<MatrixTransposeView<'_, T, C, D, M, N>> for &MatrixTransposeViewMut<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the - operator.
Source§

fn sub(self, other: MatrixTransposeView<'_, T, C, D, M, N>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> Sub<MatrixTransposeView<'_, T, C, D, M, N>> for &MatrixView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the - operator.
Source§

fn sub(self, other: MatrixTransposeView<'_, T, C, D, M, N>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> Sub<MatrixTransposeView<'_, T, C, D, M, N>> for &MatrixViewMut<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the - operator.
Source§

fn sub(self, other: MatrixTransposeView<'_, T, C, D, M, N>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> Sub<MatrixTransposeView<'_, T, C, D, M, N>> for MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the - operator.
Source§

fn sub(self, other: MatrixTransposeView<'_, T, C, D, M, N>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> Sub<MatrixTransposeView<'_, T, C, D, M, N>> for MatrixTransposeViewMut<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the - operator.
Source§

fn sub(self, other: MatrixTransposeView<'_, T, C, D, M, N>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> Sub<MatrixTransposeView<'_, T, C, D, M, N>> for MatrixView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the - operator.
Source§

fn sub(self, other: MatrixTransposeView<'_, T, C, D, M, N>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> Sub<MatrixTransposeView<'_, T, C, D, M, N>> for MatrixViewMut<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the - operator.
Source§

fn sub(self, other: MatrixTransposeView<'_, T, C, D, M, N>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> Sub<MatrixTransposeViewMut<'_, T, C, D, M, N>> for &MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the - operator.
Source§

fn sub(self, other: MatrixTransposeViewMut<'_, T, C, D, M, N>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> Sub<MatrixTransposeViewMut<'_, T, C, D, M, N>> for MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the - operator.
Source§

fn sub(self, other: MatrixTransposeViewMut<'_, T, C, D, M, N>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> Sub<MatrixView<'_, T, C, D, M, N>> for &MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the - operator.
Source§

fn sub(self, other: MatrixView<'_, T, C, D, M, N>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> Sub<MatrixView<'_, T, C, D, M, N>> for MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the - operator.
Source§

fn sub(self, other: MatrixView<'_, T, C, D, M, N>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> Sub<MatrixViewMut<'_, T, C, D, M, N>> for &MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the - operator.
Source§

fn sub(self, other: MatrixViewMut<'_, T, C, D, M, N>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> Sub<MatrixViewMut<'_, T, C, D, M, N>> for MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the - operator.
Source§

fn sub(self, other: MatrixViewMut<'_, T, C, D, M, N>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, const A: usize, const B: usize, const M: usize> Sub<RowVector<T, M>> for &MatrixTransposeView<'_, T, A, B, 1, M>

Source§

type Output = Matrix<T, 1, M>

The resulting type after applying the - operator.
Source§

fn sub(self, other: RowVector<T, M>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, const A: usize, const B: usize, const M: usize> Sub<RowVector<T, M>> for MatrixTransposeView<'_, T, A, B, 1, M>

Source§

type Output = Matrix<T, 1, M>

The resulting type after applying the - operator.
Source§

fn sub(self, other: RowVector<T, M>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Sub<RowVectorView<'_, V, T, N, M>> for &MatrixTransposeView<'_, T, A, B, 1, M>

Source§

type Output = Matrix<T, 1, M>

The resulting type after applying the - operator.
Source§

fn sub(self, other: RowVectorView<'_, V, T, N, M>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Sub<RowVectorView<'_, V, T, N, M>> for MatrixTransposeView<'_, T, A, B, 1, M>

Source§

type Output = Matrix<T, 1, M>

The resulting type after applying the - operator.
Source§

fn sub(self, other: RowVectorView<'_, V, T, N, M>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Sub<RowVectorViewMut<'_, V, T, N, M>> for &MatrixTransposeView<'_, T, A, B, 1, M>

Source§

type Output = Matrix<T, 1, M>

The resulting type after applying the - operator.
Source§

fn sub(self, other: RowVectorViewMut<'_, V, T, N, M>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Sub<RowVectorViewMut<'_, V, T, N, M>> for MatrixTransposeView<'_, T, A, B, 1, M>

Source§

type Output = Matrix<T, 1, M>

The resulting type after applying the - operator.
Source§

fn sub(self, other: RowVectorViewMut<'_, V, T, N, M>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Sub<T> for &MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the - operator.
Source§

fn sub(self, scalar: T) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Sub<T> for MatrixTransposeView<'_, T, A, B, M, N>

Source§

type Output = Matrix<T, M, N>

The resulting type after applying the - operator.
Source§

fn sub(self, scalar: T) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, const A: usize, const B: usize, const M: usize> Sub<Vector<T, M>> for &MatrixTransposeView<'_, T, A, B, M, 1>

Source§

type Output = Matrix<T, M, 1>

The resulting type after applying the - operator.
Source§

fn sub(self, other: Vector<T, M>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, const A: usize, const B: usize, const M: usize> Sub<Vector<T, M>> for MatrixTransposeView<'_, T, A, B, M, 1>

Source§

type Output = Matrix<T, M, 1>

The resulting type after applying the - operator.
Source§

fn sub(self, other: Vector<T, M>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Sub<VectorView<'_, V, T, N, M>> for &MatrixTransposeView<'_, T, A, B, M, 1>

Source§

type Output = Matrix<T, M, 1>

The resulting type after applying the - operator.
Source§

fn sub(self, other: VectorView<'_, V, T, N, M>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Sub<VectorView<'_, V, T, N, M>> for MatrixTransposeView<'_, T, A, B, M, 1>

Source§

type Output = Matrix<T, M, 1>

The resulting type after applying the - operator.
Source§

fn sub(self, other: VectorView<'_, V, T, N, M>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Sub<VectorViewMut<'_, V, T, N, M>> for &MatrixTransposeView<'_, T, A, B, M, 1>

Source§

type Output = Matrix<T, M, 1>

The resulting type after applying the - operator.
Source§

fn sub(self, other: VectorViewMut<'_, V, T, N, M>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + Sub<T, Output = T>, V: Index<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> Sub<VectorViewMut<'_, V, T, N, M>> for MatrixTransposeView<'_, T, A, B, M, 1>

Source§

type Output = Matrix<T, M, 1>

The resulting type after applying the - operator.
Source§

fn sub(self, other: VectorViewMut<'_, V, T, N, M>) -> Self::Output

Performs the - operation. Read more
Source§

impl<T: Copy + SubAssign<T>, const A: usize, const B: usize, const M: usize> SubAssign<&MatrixTransposeView<'_, T, A, B, 1, M>> for RowVector<T, M>

Source§

fn sub_assign(&mut self, other: &MatrixTransposeView<'_, T, A, B, 1, M>)

Performs the -= operation. Read more
Source§

impl<T: Copy + SubAssign<T>, V: IndexMut<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> SubAssign<&MatrixTransposeView<'_, T, A, B, 1, M>> for RowVectorViewMut<'_, V, T, N, M>

Source§

fn sub_assign(&mut self, other: &MatrixTransposeView<'_, T, A, B, 1, M>)

Performs the -= operation. Read more
Source§

impl<T: Copy + SubAssign<T>, const A: usize, const B: usize, const M: usize> SubAssign<&MatrixTransposeView<'_, T, A, B, M, 1>> for Vector<T, M>

Source§

fn sub_assign(&mut self, other: &MatrixTransposeView<'_, T, A, B, M, 1>)

Performs the -= operation. Read more
Source§

impl<T: Copy + SubAssign<T>, V: IndexMut<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> SubAssign<&MatrixTransposeView<'_, T, A, B, M, 1>> for VectorViewMut<'_, V, T, N, M>

Source§

fn sub_assign(&mut self, other: &MatrixTransposeView<'_, T, A, B, M, 1>)

Performs the -= operation. Read more
Source§

impl<T: Copy + SubAssign<T>, const A: usize, const B: usize, const M: usize, const N: usize> SubAssign<&MatrixTransposeView<'_, T, A, B, M, N>> for Matrix<T, M, N>

Source§

fn sub_assign(&mut self, other: &MatrixTransposeView<'_, T, A, B, M, N>)

Performs the -= operation. Read more
Source§

impl<T: Copy + SubAssign<T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> SubAssign<&MatrixTransposeView<'_, T, C, D, M, N>> for MatrixTransposeViewMut<'_, T, A, B, M, N>

Source§

fn sub_assign(&mut self, other: &MatrixTransposeView<'_, T, C, D, M, N>)

Performs the -= operation. Read more
Source§

impl<T: Copy + SubAssign<T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> SubAssign<&MatrixTransposeView<'_, T, C, D, M, N>> for MatrixViewMut<'_, T, A, B, M, N>

Source§

fn sub_assign(&mut self, other: &MatrixTransposeView<'_, T, C, D, M, N>)

Performs the -= operation. Read more
Source§

impl<T: Copy + SubAssign<T>, const A: usize, const B: usize, const M: usize> SubAssign<MatrixTransposeView<'_, T, A, B, 1, M>> for RowVector<T, M>

Source§

fn sub_assign(&mut self, other: MatrixTransposeView<'_, T, A, B, 1, M>)

Performs the -= operation. Read more
Source§

impl<T: Copy + SubAssign<T>, V: IndexMut<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> SubAssign<MatrixTransposeView<'_, T, A, B, 1, M>> for RowVectorViewMut<'_, V, T, N, M>

Source§

fn sub_assign(&mut self, other: MatrixTransposeView<'_, T, A, B, 1, M>)

Performs the -= operation. Read more
Source§

impl<T: Copy + SubAssign<T>, const A: usize, const B: usize, const M: usize> SubAssign<MatrixTransposeView<'_, T, A, B, M, 1>> for Vector<T, M>

Source§

fn sub_assign(&mut self, other: MatrixTransposeView<'_, T, A, B, M, 1>)

Performs the -= operation. Read more
Source§

impl<T: Copy + SubAssign<T>, V: IndexMut<usize, Output = T>, const A: usize, const B: usize, const M: usize, const N: usize> SubAssign<MatrixTransposeView<'_, T, A, B, M, 1>> for VectorViewMut<'_, V, T, N, M>

Source§

fn sub_assign(&mut self, other: MatrixTransposeView<'_, T, A, B, M, 1>)

Performs the -= operation. Read more
Source§

impl<T: Copy + SubAssign<T>, const A: usize, const B: usize, const M: usize, const N: usize> SubAssign<MatrixTransposeView<'_, T, A, B, M, N>> for Matrix<T, M, N>

Source§

fn sub_assign(&mut self, other: MatrixTransposeView<'_, T, A, B, M, N>)

Performs the -= operation. Read more
Source§

impl<T: Copy + SubAssign<T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> SubAssign<MatrixTransposeView<'_, T, C, D, M, N>> for MatrixTransposeViewMut<'_, T, A, B, M, N>

Source§

fn sub_assign(&mut self, other: MatrixTransposeView<'_, T, C, D, M, N>)

Performs the -= operation. Read more
Source§

impl<T: Copy + SubAssign<T>, const A: usize, const B: usize, const C: usize, const D: usize, const M: usize, const N: usize> SubAssign<MatrixTransposeView<'_, T, C, D, M, N>> for MatrixViewMut<'_, T, A, B, M, N>

Source§

fn sub_assign(&mut self, other: MatrixTransposeView<'_, T, C, D, M, N>)

Performs the -= operation. Read more
Source§

impl<'a, T: Eq, const R: usize, const C: usize, const VR: usize, const VC: usize> Eq for MatrixTransposeView<'a, T, R, C, VR, VC>

Auto Trait Implementations§

§

impl<'a, T, const R: usize, const C: usize, const VR: usize, const VC: usize> Freeze for MatrixTransposeView<'a, T, R, C, VR, VC>

§

impl<'a, T, const R: usize, const C: usize, const VR: usize, const VC: usize> RefUnwindSafe for MatrixTransposeView<'a, T, R, C, VR, VC>
where T: RefUnwindSafe,

§

impl<'a, T, const R: usize, const C: usize, const VR: usize, const VC: usize> Send for MatrixTransposeView<'a, T, R, C, VR, VC>
where T: Sync,

§

impl<'a, T, const R: usize, const C: usize, const VR: usize, const VC: usize> Sync for MatrixTransposeView<'a, T, R, C, VR, VC>
where T: Sync,

§

impl<'a, T, const R: usize, const C: usize, const VR: usize, const VC: usize> Unpin for MatrixTransposeView<'a, T, R, C, VR, VC>

§

impl<'a, T, const R: usize, const C: usize, const VR: usize, const VC: usize> UnwindSafe for MatrixTransposeView<'a, T, R, C, VR, VC>
where T: RefUnwindSafe,

Blanket Implementations§

§

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

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

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

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

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

§

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

Mutably borrows from an owned value. Read more
§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

§

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

§

fn into(self) -> U

Calls U::from(self).

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

§

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

§

fn to_string(&self) -> String

Converts the given value to a String. Read more
§

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

§

type Error = Infallible

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

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

Performs the conversion.
§

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.
§

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

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V