Home > @josh-brown/vector > getEigenvectorForEigenvalue
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>;|
Parameter |
Type |
Description |
|---|---|---|
|
A |
Matrix<S> |
The matrix with eigenvalue |
|
lambda |
S |
The eigenvalue for which to find an eigenvector |
Returns:
Vector<S>