Skip to content

Latest commit

 

History

History
68 lines (32 loc) · 995 Bytes

File metadata and controls

68 lines (32 loc) · 995 Bytes

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

FloatMatrix.combine() method

Builds a matrix by combining element-wise the values of this matrix with the values of another matrix.

Signature:

combine(other: Matrix<number>, combineEntries: (a: number, b: number) => number): Matrix<number>;

Parameters

Parameter

Type

Description

other

Matrix<number>

combineEntries

(a: number, b: number) => number

Returns:

Matrix<number>

The new matrix