Type Alias Tensor

Source
pub type Tensor<A, D> = TensorBase<OwnedRepr<A>, D>;
Expand description

a type alias for a TensorBase with an owned representation

Aliased Type§

pub struct Tensor<A, D> { /* private fields */ }

Trait Implementations§

Source§

impl<A> Inverse for Tensor<A, Ix2>

Source§

type Output = TensorBase<OwnedRepr<A>, Dim<[usize; 2]>>

the output, or result, of the inverse operation
Source§

fn inverse(&self) -> Self::Output

compute the inverse of the current object, producing some Output