Module numeric::tensor [] [src]

The tensor module defines a N-dimensional matrix for used in scientific computing.

Many of the things in this module are lifted out of the tensor namespace, which means you can do things like:

use numeric::Tensor;

Structs

Tensor

An implementation of an N-dimensional matrix. A quick example:

Enums

AxisIndex

Used for advanced slicing of a Tensor.

Type Definitions

DoubleTensor

Type alias for Tensor<f64>

SingleTensor

Type alias for Tensor<f32>