Why I get ans = logical 1
24 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
vincenzo violi
il 22 Nov 2020
Commentato: vincenzo violi
il 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 Commenti
Risposta accettata
Nora Khaled
il 22 Nov 2020
in your last case you use else then put a condition.
you should either use "elseif" or no condition.
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Code Execution 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!