Skip to content

Latest commit

 

History

History
56 lines (27 loc) · 874 Bytes

File metadata and controls

56 lines (27 loc) · 874 Bytes

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

ArrayMatrix.apply() method

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

Signature:

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

Parameters

Parameter

Type

Description

vector

Vector<S>

the vector that should be transformed by the matrix

Returns:

Vector<S>

The transformed vector