필터 지우기
필터 지우기

how to find lambda from this formula?

조회 수: 8 (최근 30일)
eri
eri 2013년 1월 3일
det (A - lambda * I) = 0
where:
A= a square matrix, ex: [2 5 4;8 6 9;3 4 6]
I= identity matrix

채택된 답변

Brian B
Brian B 2013년 1월 3일
e = eig(A) returns a vector of eigenvalues of the matrix A. To get the associated eigenvectors, use [V,D] = eig(A). See the documentation for eig to interpret V and D.
  댓글 수: 2
eri
eri 2013년 1월 3일
does eig(a) will result to lambda?
Brian B
Brian B 2013년 1월 3일
There are, in general, multiple solutions (values of lambda) which satisfy the equation det(A-lambda*I)=0. eig(A) returns a vector, each element of which is one solution.
For an n-by-n matrix A, the vector returned by eig(A) will have length n. That is because det(A-lambda*I) is a degree-n polynomial, and hence has n (possibly complex) roots by the fundamental theorem of algebra. Note that some values may be repeated; that indicates the algebraic multiplicity of the root.

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

추가 답변 (0개)

카테고리

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