Mat.this

Build a matrix from its elements. To be provided row major.

  1. this(Args args)
    struct Mat(T, size_t R, size_t C)
    this
    (
    Args...
    )
    (
    in Args args
    )
    if (
    Args.length == R * C &&
    allSatisfy!(isNumeric, Args)
    &&
    isImplicitlyConvertible!(CommonType!Args, T)
    )
  2. this(Args args)
  3. this(Args args)

Meta