dstruct ~master (2015-04-27T00:40:08Z)
Home
Dub
Repo
Matrix.this
dstruct
matrix
Matrix
Construct this matrix from a 2 dimensional static array.
this
(
ref
const
(
Number
[
columnCount
][
rowCount
])
data
)
struct
Matrix
(Number, size_t _rowCount, size_t _columnCount)
@
safe
pure nothrow
this
inout
(
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.