Matrix.this

Constructor by element type. This matrix's each element is filled by given value.

  1. this(T e)
    struct Matrix(T, uint U, uint V)
    this
    (
    T e
    )
    if (
    __traits(isArithmetic, T)
    )
  2. this(T[U * V] elements)
  3. this(Range r)
  4. this(T[U][V] elements)
  5. this(Vector!(T, U)[V] vectors)

Parameters

e T

a value which fills the matrix

Meta