Vector.mul

Matrix multiply for vector.

struct Vector(size_t D, E = float)
ref @nogc nothrow pure return scope
typeof(this)
mul
()
(
auto scope ref const(Matrix!(D, D, E)) m
,
auto scope ref const(Vector!(D, E)) v
)

Parameters

m const(Matrix!(D, D, E))

argument matrix.

v const(Vector!(D, E))

argument vector.

Return Value

Type: typeof(this)

result vector.

Meta