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

 Réponse acceptée

Image Analyst
Image Analyst le 16 Oct 2013
Modifié(e) : Image Analyst le 16 Oct 2013

0 votes

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.

Plus de réponses (0)

Catégories

En savoir plus sur Variables dans Centre d'aide et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by