Skip to content

Latest commit

 

History

History
68 lines (32 loc) · 945 Bytes

File metadata and controls

68 lines (32 loc) · 945 Bytes

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

ArrayMatrix.combine() method

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

Signature:

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

Parameters

Parameter

Type

Description

other

Matrix<S>

combineEntries

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

Returns:

Matrix<S>

The new matrix