Skip to content

Latest commit

 

History

History
56 lines (27 loc) · 894 Bytes

File metadata and controls

56 lines (27 loc) · 894 Bytes

Home > @josh-brown/vector > FloatMatrix > apply

FloatMatrix.apply() method

Applies the matrix as a linear transformation to the given vector. Implements matrix-vector multiplication.

Signature:

apply(vector: Vector<number>): Vector<number>;

Parameters

Parameter

Type

Description

vector

Vector<number>

the vector that should be transformed by the matrix

Returns:

Vector<number>

The transformed vector