can any one tell me why the else statement is showing an error in my code
for Re1=3000 if x<Re1 f1=mc+cof+((Re1-x)*0.18)-(x*0.18)-(Rh1*0.05); end else f1=mc+cof-(Re1*0.18)-(Rh1*0.05); end end

 Akzeptierte Antwort

Image Analyst
Image Analyst am 16 Okt. 2013
Bearbeitet: Image Analyst am 16 Okt. 2013

0 Stimmen

You have an else that has no if to start it off. Your prior if was ended with the end in the line right before the else. Try getting rid of that if that's what you want to do.
for Re1=3000
if x<Re1
f1=mc+cof+((Re1-x)*0.18)-(x*0.18)-(Rh1*0.05);
else
f1=mc+cof-(Re1*0.18)-(Rh1*0.05);
end
end
Of course I hope you realize your for loop will go only once , for a value of Re1 of 3000.

Weitere Antworten (0)

Kategorien

Mehr zu Simulink finden Sie in Hilfe-Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by