Mat.this

Build a matrix from the provided rows. Each row must be an array (static or dynamic) and have the correct number of elements.

  1. this(Args args)
  2. this(Args args)
  3. this(Args args)
    struct Mat(T, size_t R, size_t C)
    this
    (
    Args...
    )
    (
    in Args args
    )
    if (
    Args.length == rowLength &&
    allSatisfy!(isVec, Args)
    )

Meta