Mat2D

Undocumented in source.

Constructors

this
this(T[] array, size_t r, size_t c)
Undocumented in source.
this
this(size_t r, size_t c)
Undocumented in source.
this
this(size_t n)
Undocumented in source.

Members

Aliases

height
alias height = rows
Undocumented in source.
width
alias width = cols
Undocumented in source.

Functions

argMax
int[2] argMax()
Undocumented in source. Be warned that the author may not have intended to support it.
argMin
int[2] argMin()
Undocumented in source. Be warned that the author may not have intended to support it.
diag
T[] diag()
Undocumented in source. Be warned that the author may not have intended to support it.
inverse
Mat2D!double inverse()
Undocumented in source. Be warned that the author may not have intended to support it.
max
T max()
Undocumented in source. Be warned that the author may not have intended to support it.
min
T min()
Undocumented in source. Be warned that the author may not have intended to support it.
opEquals
bool opEquals(Mat2D!T other)
Undocumented in source. Be warned that the author may not have intended to support it.
opIndex
T opIndex(size_t i, size_t j)
Undocumented in source. Be warned that the author may not have intended to support it.
opIndexAssign
void opIndexAssign(T val, size_t i, size_t j)
Undocumented in source. Be warned that the author may not have intended to support it.
opMul
Mat2D!T opMul(Mat2D!S b)
Undocumented in source. Be warned that the author may not have intended to support it.
opMul
Mat2D!T opMul(T scalar)
Undocumented in source. Be warned that the author may not have intended to support it.
opMulAssign
Mat2D!T opMulAssign(Mat2D!T mat)
Undocumented in source. Be warned that the author may not have intended to support it.
opMulAssign
Mat2D!T opMulAssign(T scalar)
Undocumented in source. Be warned that the author may not have intended to support it.
transpose
Mat2D!T transpose()
Undocumented in source. Be warned that the author may not have intended to support it.

Static functions

diagFromArray
Mat2D!T diagFromArray(T[] v)
Undocumented in source. Be warned that the author may not have intended to support it.

Variables

cols
size_t cols;
Undocumented in source.
data
T[] data;
Undocumented in source.
rows
size_t rows;
Undocumented in source.

Meta