else statement is showing error
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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
0 commentaires
Réponse acceptée
Image Analyst
le 16 Oct 2013
Modifié(e) : Image Analyst
le 16 Oct 2013
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)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!