Why I get ans = logical 1
24 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
vincenzo violi
le 22 Nov 2020
Commenté : vincenzo violi
le 22 Nov 2020
if(Tl > Tup && Tup<TRIS)
disp(Tup);
disp('Tup');
elseif (Tl>Tup && Tup > TRIS)
disp(TRIS);
disp('Tris');
else (Tl < Tup && Tl < TRIS)
disp(Tl);
disp('Tl');
end
Could anyone help me?
0 commentaires
Réponse acceptée
Nora Khaled
le 22 Nov 2020
in your last case you use else then put a condition.
you should either use "elseif" or no condition.
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Code Execution dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!