matte.matrix

Undocumented in source.

Members

Functions

identity
Matrix!T identity(size_t size)

Creates an identity matrix of the given size.

matrix
Matrix!T matrix(T[][] data)

Creates a matrix with the given data

ones
Matrix!T ones(size_t numRows, size_t numColumns)

Creates a matrix full of ones.

vector
Matrix!T vector(size_t dims)

Creates a vector with the given number of dimensions.

zeros
Matrix!T zeros(size_t numRows, size_t numColumns)

Creates a matrix full of zeros.

Structs

Matrix
struct Matrix(T)
Undocumented in source.

Meta