필터 지우기
필터 지우기

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 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