フィルターのクリア

How can i solve this system ?

1 回表示 (過去 30 日間)
Mallouli Marwa
Mallouli Marwa 2017 年 1 月 25 日
コメント済み: Mallouli Marwa 2017 年 1 月 27 日
Hi
To determine the damping ratio (psij and psik ), i have to solve the attached system where all other name
are constant.
How can i solve this system ?
  3 件のコメント
Mallouli Marwa
Mallouli Marwa 2017 年 1 月 26 日
I mean zeta
Mallouli Marwa
Mallouli Marwa 2017 年 1 月 26 日
I want to solve it numerically.

サインインしてコメントする。

採用された回答

Torsten
Torsten 2017 年 1 月 26 日
A = 2*omegaj*omegak/(omegaj^2-omegak^2)*[Y*I/omegak -Y*I/omegaj ; -m*omegak m*omegaj];
b = [cs*I ; ca];
zeta = A\b;
zetaj = zeta(1);
zetak = zeta(2);
Best wishes
Torsten.
  5 件のコメント
Torsten
Torsten 2017 年 1 月 27 日
編集済み: Torsten 2017 年 1 月 27 日
If abs(wr(i))=abs(wr(k)), your matrix A becomes singular and you won't get a solution.
This will at least be the case if i=k in your nested-loop construction.
Best wishes
Torsten.
Mallouli Marwa
Mallouli Marwa 2017 年 1 月 27 日
Please how can i correct this error ?

サインインしてコメントする。

その他の回答 (1 件)

Torsten
Torsten 2017 年 1 月 26 日
Hint:
The inverse of
[a b ; c d]
is
1/(a*d-b*c)*[d -b; -c a]
Best wishes
Torsten.

カテゴリ

Help Center および File ExchangeLinear Algebra についてさらに検索

タグ

タグが未入力です。

Community Treasure Hunt

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

Start Hunting!

Translated by