How can i solve this system ?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Mallouli Marwa
el 25 de En. de 2017
Comentada: Mallouli Marwa
el 27 de En. de 2017
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 ?
![](https://www.mathworks.com/matlabcentral/images/broken_image.png)
3 comentarios
Respuesta aceptada
Torsten
el 26 de En. de 2017
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 comentarios
Más respuestas (1)
Torsten
el 26 de En. de 2017
Hint:
The inverse of
[a b ; c d]
is
1/(a*d-b*c)*[d -b; -c a]
Best wishes
Torsten.
0 comentarios
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!