I want to print only logical answer as shown in the example
2 views (last 30 days)
Show older comments
Manav Divekar
on 29 Oct 2021
Commented: Manav Divekar
on 29 Oct 2021
function [out] = issortedvector(v)
x = sort(v);
if x == v
else
end
Example
issortedvector( [ -5 -3 10 20 25 29 ] )
ans = logical
1
or
>> issortedvector( [ 5 9 11 8 15 ] )
ans = logical
0
0 Comments
Accepted Answer
Image Analyst
on 29 Oct 2021
Instead of
if x == v
else
end
try
out = all(x==v);
3 Comments
Image Analyst
on 29 Oct 2021
Edited: Image Analyst
on 29 Oct 2021
if all(x == v)
out = true;
else
out = false;
end
More Answers (0)
See Also
Categories
Find more on Startup and Shutdown in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!