Azzera filtri
Azzera filtri

How to solve 3 equations with 3 unknowns using 'for' loop?

1 visualizzazione (ultimi 30 giorni)
Here is my 3 equation:
y=(4+2x-3z)/5
x=(3-2y-z)/4
z=(13+y-2x)/4
I have to use 'for' loop and perform 30 iterations, how can I do that in matlab? Can someone please help me?
  1 Commento
Jasmine
Jasmine il 16 Lug 2014
If you simply need to know how to use a for loop thirty times, use a variable called count.
count = 1;
for count = 1:30
[your code]
end
Or are you asking how to solve the simultaneous equations?

Accedi per commentare.

Risposta accettata

lvn
lvn il 16 Lug 2014
Modificato: lvn il 16 Lug 2014
I guess you are meant to solve these equations by iteration? Something like this would do
x=1;y=1;z=1;
for l=1:30
y=(4+2*x-3*z)/5
x=(3-2*y-z)/4
z=(13+y-2*x)/4
end;

Più risposte (0)

Categorie

Scopri di più su Loops and Conditional Statements in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by