Skip to content

Latest commit

 

History

History
70 lines (33 loc) · 914 Bytes

File metadata and controls

70 lines (33 loc) · 914 Bytes

Home > @josh-brown/vector > exp

exp() function

Implements the Pade Approximant to compute the exponential of matrix A

Signature:

export declare function exp<S>(A: Matrix<S>, order?: number): Matrix<S>;

Parameters

Parameter

Type

Description

A

Matrix<S>

The matrix to exponentiate

order

number

(Optional) The order of the approximation - higher numbers yield more accurate results

Returns:

Matrix<S>