Skip to content

Latest commit

 

History

History
123 lines (56 loc) · 1.85 KB

File metadata and controls

123 lines (56 loc) · 1.85 KB

Home > @josh-brown/vector > NumberMatrix

NumberMatrix class

A dense matrix of JavaScript number primitives, implemented as an ArrayMatrix

Signature:

export declare class NumberMatrix extends ArrayMatrix<number> 

Extends: ArrayMatrix<number>

Remarks

The constructor for this class is marked as internal. Third-party code should not call the constructor directly or create subclasses that extend the NumberMatrix class.

Methods

Method

Modifiers

Description

builder()

Returns a MatrixBuilder which will build new matrices of the same type

builder()

static

ops()

Returns a ScalarOperations object which will allow consumers to work generically with the scalars contained in the vector.

ops()

static

vectorBuilder()

Returns a VectorBuilder which will build new vectors of a compatible type

vectorBuilder()

static