Matrix.this

Constructs a Matrix specifying the diagonal value.

  1. this(T[numElements] values)
  2. this(T diag)
    struct Matrix(T, uint numColumns, uint numRows = numColumns)
    this
    (
    const T diag
    )
    if (
    numColumns > 0 &&
    numRows > 0
    )

Meta