Matrix.opUnary

Unary operation for "-".

  1. Matrix!(T, U, V) opUnary()
  2. Matrix!(T, U, V) opUnary()
    struct Matrix(T, uint U, uint V)
    const
    Matrix!(T, U, V)
    opUnary
    (
    string op
    )
    ()
    if (
    op == "-"
    )
    if (
    __traits(isArithmetic, T)
    )

Return Value

Type: Matrix!(T, U, V)

a matrix whose sign is inverted

Meta