フィルターのクリア

How can ı find mode shape from natural frequency

3 ビュー (過去 30 日間)
Merve Ala
Merve Ala 2023 年 1 月 16 日
回答済み: KSSV 2023 年 1 月 17 日
My codes are in below. But the results are not that ı want. What can I do?
A = [ 1 2 3 4 ;
4 5 6 7 ;
7 8 9 10 ;
10 11 12 13 ];
B = [ 5 7 8 4 ;
4 5 6 7 ;
7 8 9 10 ;
10 11 12 13 ];
[v,d]=eig(B,A);
w=sqrt(d)
w1=w(1,1)
w2=w(2,2)
w3=w(3,3)
w4=w(4,4)
disp([w1;w2;w3;w4])
for i=1:4
v(:,i)=v(:,i)/v(2,i)
end
disp(v)

回答 (1 件)

KSSV
KSSV 2023 年 1 月 17 日
[v,d]=eig(B,A);
plot(v)

カテゴリ

Help Center および File ExchangeMatrix Indexing についてさらに検索

製品


リリース

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by