Problem 10. Determine whether a vector is monotonically increasing

Return true if the elements of the input vector increase monotonically (i.e. each element is larger than the previous). Return false otherwise.
Examples:
Input x = [-3 0 7]
Output tf is true
Input x = [2 2]
Output tf is false

Solution Stats

31.07% Correct | 68.93% Incorrect
Last Solution submitted on Mar 19, 2024

Problem Comments

Solution Comments

Show comments


Problem Recent Solvers19331

Problem Tags

Community Treasure Hunt

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

Start Hunting!