"eig" use which algorithm to find eigenvalues

조회 수: 63 (최근 30일)
Maryam
Maryam 2020년 6월 18일
댓글: Maryam 2020년 6월 21일
I am wondering what algorithm "eig", MATLAB build in finction, use to find the eigen values? I so much appreciate the time and responses. Thank you.
  댓글 수: 2
Walter Roberson
Walter Roberson 2020년 6월 18일
eig() has several different options; which one are you asking about?
Maryam
Maryam 2020년 6월 18일
This option: [ V , D ] = eig( A , B )
I'd like to know what algorithm they use to find the eigen values in this case. Thanks so much for the time and response.

댓글을 달려면 로그인하십시오.

채택된 답변

the cyclist
the cyclist 2020년 6월 18일
The algorithm is dependent on the properties of the input(s).
The algorithm section of the documentation for eig gives some info on this dependence.
  댓글 수: 1
Maryam
Maryam 2020년 6월 21일
Thank you so much for youre response. I appreciate it!

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Christine Tobler
Christine Tobler 2020년 6월 19일
We don't give out the exact method used, but all syntaxes of EIG call into various LAPACK functions. See here for an introduction to LAPACK, there's a section on generalized eigenvalue problems.
For a more complete description of algorithms used for computing eigenvalues and egenvectors, I'd recommend an introduction text to numerical linear algebra, for example "Matrix Computations" by Golub and Van Loan.
  댓글 수: 1
Maryam
Maryam 2020년 6월 21일
Thank you so much for youre response. I appreciate it!

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Linear Algebra에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by