Skip to content

Latest commit

 

History

History
70 lines (33 loc) · 1015 Bytes

File metadata and controls

70 lines (33 loc) · 1015 Bytes

Home > @josh-brown/vector > getEigenvectorForEigenvalue

getEigenvectorForEigenvalue() function

Given a matrix A and an eigenvalue lambda of that matrix, returns the eigenvector of A corresponding to lambda

Signature:

export declare function getEigenvectorForEigenvalue<S>(A: Matrix<S>, lambda: S): Vector<S>;

Parameters

Parameter

Type

Description

A

Matrix<S>

The matrix with eigenvalue lambda

lambda

S

The eigenvalue for which to find an eigenvector

Returns:

Vector<S>