dstruct v0.1.0 (2015-03-29T14:44:48Z)
Home
Dub
Repo
Matrix.this
dstruct
matrix
Matrix
Construct this matrix from a 2 dimensional static array.
this
(const(Number[columnCount][rowCount]) data)
struct
Matrix
(Number, size_t _rowCount, size_t _columnCount)
@
safe
pure nothrow inout
this
(
ref
const
(
Number
[
columnCount
][
rowCount
])
data
)
if
(
isNumeric
!
Number
&&
_rowCount
> 0
&&
_columnCount
> 0
)
this
(const(Number[columnCount][rowCount]) data)
this
(Number[rowCount * columnCount] numbers)
Meta
Source
See Implementation
dstruct
matrix
Matrix
constructors
this
functions
opApply
opBinary
opIndex
opOpAssign
manifest constants
columnCount
empty
isSquare
rowCount
properties
array1D
variables
array2D
Construct this matrix from a 2 dimensional static array.