필터 지우기
필터 지우기

How to solve an equation with big matrix?

조회 수: 5 (최근 30일)
Saverio Loiacono
Saverio Loiacono 2024년 2월 2일
댓글: Saverio Loiacono 2024년 2월 2일
Hello,
I have a problem solving this type of equation: det((-w^2)*Ma+Ka)==0
I've tried several times, using syms, fsolve, etc... Due to the sizes fo the matrix Ma and Ka that is for both 288X288, the matlab is not able to find the q solutionc of w (that is the unkown), where q is equal to tha arrays of the matrix (288). I've tried this types of code:
1)syms f(x)
f(x) = det(-(x^2)*Ma2+Ka2);
sol = vpasolve(f);
2)syms w
S = det(-(w^2)*Ma+Ka)==0;
solve = S;
3)myfun = @(x)det((-x.^2)*Ma+Ka);
[a,b]=size(Ma);
x0 = zeros(2*a,1);
C = fsolve(@(x)det((-x.^2)*Ma+Ka),x0);
None of them works, any solution? I will appreciate your help.
  댓글 수: 5
Saverio Loiacono
Saverio Loiacono 2024년 2월 2일
I’m sorry w ,that is the unknown,is a number, it is not a vector. And from the equation I should obtain 288 solution for w. That is for clarity a frequency.
Saverio Loiacono
Saverio Loiacono 2024년 2월 2일
So it’s a single value as you defined it before

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

채택된 답변

Torsten
Torsten 2024년 2월 2일
편집: Torsten 2024년 2월 2일
Looks like a generalized eigenvalue problem of the form
(A - w^2*B)*x = 0
with unknown x and w.
Use "eig" to solve it.
  댓글 수: 3
Torsten
Torsten 2024년 2월 2일
편집: Torsten 2024년 2월 2일
From the documentation:
[V,D,W] = eig(A,B)
The generalized eigenvalue problem is to determine the solution to the equation Av = λBv, where A and B are n-by-n matrices, v is a column vector of length n, and λ is a scalar. The values of λ that satisfy the equation are the generalized eigenvalues. The corresponding values of v are the generalized right eigenvectors. The left eigenvectors, w, satisfy the equation wA = λwB.
Thus in your case:
e = eig(Ka,Ma)
The elements of e are your elements w^2. Taking the positive and negative square roots give you the 2*288 possible values for w.
Saverio Loiacono
Saverio Loiacono 2024년 2월 2일
thank you so much, I appreciate your help.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Linear Algebra에 대해 자세히 알아보기

제품


릴리스

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by