필터 지우기
필터 지우기

Solve the following eigenvalue problem using Matlab

조회 수: 2 (최근 30일)
Joni Riihimaki
Joni Riihimaki 2022년 4월 23일
댓글: Walter Roberson 2022년 4월 23일
Hello, I am a beginner level in Matlab so I am little bit confused by this questions would you guys have a look please?
Thank you!
w^2 [ 3 0 0 (x) = [ 10 -4 0 (x)
0 2 2 -4 6 -2
0 0 1] 0 -2 2]

채택된 답변

Torsten
Torsten 2022년 4월 23일
편집: Torsten 2022년 4월 23일
Still confused ? Then read about "eig".
B = [ 3 0 0 ;
0 2 2 ;
0 0 1] ;
A = [ 10 -4 0 ;
0 2 2 ;
0 0 1] ;
[V,D] = eig(A,B)
A*V - B*V*D
A*V(:,1)-B*V(:,1)*D(1,1)
A*V(:,2)-B*V(:,2)*D(2,2)
A*V(:,3)-B*V(:,3)*D(3,3)
w(1) = sqrt(D(1,1))
w(2) = sqrt(D(2,2))
w(3) = sqrt(D(3,3))
  댓글 수: 3
Torsten
Torsten 2022년 4월 23일
The V's are your x and the sqrt(D)'s are your w's. Or what do you mean ?
Walter Roberson
Walter Roberson 2022년 4월 23일
The problem is in terms of w^2 so to find w you need to take the square root of the computed coordinates

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

추가 답변 (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