Matrix.opBinary

Define Matrix Product

  1. Matrix opBinary(Matrix rhs)
  2. Matrix opBinary(real rhs)
  3. Matrix opBinary(Matrix rhs)
    struct Matrix(T, size_t dim_)
    nothrow @nogc pure const
    opBinary
    (
    string op
    )
    (
    auto ref const Matrix rhs
    )
    if (
    op == "*"
    )
    if (
    __traits(isFloating, T) &&
    dim_ >= 2
    &&
    dim_ <= 4
    )
  4. VCol opBinary(VRow rhs)

Meta