Matrix.this

Constructor by array of vector. This matrix's all elements are filled by given Each vectors are dealed as column.

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

Parameters

vectors Vector!(T, U)[V]

values which fills the matrix

Meta