Matrix.opBinary

Binary operation between vector type ("*" only).

  1. Matrix!(CommonType!(T, S), U, V) opBinary(Matrix!(S, U, V) m)
  2. Matrix!(CommonType!(T, S), U, P) opBinary(Matrix!(S, V, P) m)
  3. Matrix!(CommonType!(T, S), U, V) opBinary(S e)
  4. Vector!(CommonType!(T, S), U) opBinary(Vector!(S, V) v)
    struct Matrix(T, uint U, uint V)
    const
    Vector!(CommonType!(T, S), U)
    opBinary
    (
    string op
    S
    )
    (
    Vector!(S, V) v
    )
    if (
    op == "*"
    )
    if (
    __traits(isArithmetic, T)
    )

Return Value

Type: Vector!(CommonType!(T, S), U)

calculated vector

Meta