Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

Solving Equations

1 visualización (últimos 30 días)
Harriette
Harriette el 10 de Mzo. de 2012
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
How do I simply solve and equation in Matlab?
I have defined a matrix m and k, and need to solve for L when det(k-L*m)=0.
I'd really appreciate as much help as you can give,
Thanks,
Harriette

Respuestas (1)

Edwin Fonkwe
Edwin Fonkwe el 10 de Mzo. de 2012
Hi,
Is this a homework? Did you try something?
Anyways, I can think of three ways by which you can solve the problem: (1) Use fsolve. In your case for example after having defined m, k, use: L = fsolve(@(L) det(k-L*m) initial_value); Where initial_value is a guess (which you have to make) which should be close to your expected result. Might be a bit tricky to get, but for now try 0 (zero). I don't guarantee that it will always work anyway.
(2) Use fzero. In your case for example, you first define your function: fx = @(L)det(k-L*m); answer = fzero(fx,initial_value);
Again, you have a problem here, you need to have an idea about where your solution might be found. If you don't know try different values till you think your answer is right.
(3) Personally, I prefer this third method: write your own code. Vary L in steps of, say 0.00001 and for each step, compute det(k-L*m). Evaluate the error (with respect to zero) of the result. Repeat until your result is as close as you want to zero, say it is 1e-5 for example, then stop. The value of L at that point (or previous iteration) is your answer.
Hope this helps.

Community Treasure Hunt

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

Start Hunting!

Translated by