Question: Matlab code %% #8 % % WRITE CODE BELOW: % Write a function issorted(v) in a separate file which takes a vector v % and

Matlab code
%% #8 % % WRITE CODE BELOW: % Write a function issorted(v) in a separate file which takes a vector v % and returns 1 if the vector is sorted in ascending order and returns o if % not. (Hint: It should only return o if you find a case where v(i)>v(i+1)) % Leave the commands below, and make sure your answers match the comments. % Include your function but make sure to comment it out. % % disp('Problem 8 answers') issorted([1,4,7,9]) % should return 1 issorted 11,6,3,7]) % should return o issorted([8,6,4,2,0]) % should return o issorted ([1,1,2,3,4,6,8]) % should return 1
Step by Step Solution
There are 3 Steps involved in it
To solve this problem you need to write a MATLAB function issorted that checks if a given vector is ... View full answer
Get step-by-step solutions from verified subject matter experts
