Skip to content

Latest commit

 

History

History
123 lines (56 loc) · 1.95 KB

File metadata and controls

123 lines (56 loc) · 1.95 KB

Home > @josh-brown/vector > ComplexMatrix

ComplexMatrix class

A dense Matrix of ComplexNumbers, implemented as an ArrayMatrix

Signature:

export declare class ComplexMatrix extends ArrayMatrix<ComplexNumber> 

Extends: ArrayMatrix<ComplexNumber>

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 ComplexMatrix 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