Matrix.opBinary

Define Scalar multiplication

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

Meta