Why I get ans = logical 1

37 views (last 30 days)
vincenzo violi
vincenzo violi on 22 Nov 2020
Commented: vincenzo violi on 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?

Accepted Answer

Nora Khaled
Nora Khaled on 22 Nov 2020
in your last case you use else then put a condition.
you should either use "elseif" or no condition.
  1 Comment
vincenzo violi
vincenzo violi on 22 Nov 2020
Really thanks, it actually works well with your tips!

Sign in to comment.

More Answers (0)

Categories

Find more on Data Types in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!