Matrix.opBinary

  1. Matrix!Number opBinary(Matrix!OtherNumber other)
  2. Matrix!Number opBinary(Matrix!OtherNumber other)
  3. Matrix!Number opBinary(Matrix!OtherNumber other)
  4. Matrix!Number opBinary(Matrix!OtherNumber other)
  5. Matrix!OtherNumber opBinary(Matrix!OtherNumber other)
  6. Matrix!OtherNumber opBinary(Matrix!OtherNumber other)
  7. Matrix!Number opBinary(OtherNumber other)
    struct Matrix(Number)
    @safe pure nothrow const
    Matrix!Number
    opBinary
    (
    string op
    OtherNumber
    )
    (
    OtherNumber other
    )
    if (
    op != "in" &&
    op != "~"
    &&
    is(OtherNumber : Number)
    )
    if (
    isNumeric!Number
    )

Return Value

Type: Matrix!Number

A new matrix produce by combining a matrix and a scalar value.

Meta