Find the cumulative minimum of an array without using the built-in function cummin (and a few others). Your function should act identically to cummin, allowing the same inputs.
Examples
If X = [0 4 3
6 5 2]
cumin(X,1) is [0 4 3 and cumin(X,2) is [0 0 0
0 4 2] 6 5 2]
cumin(X,1,'reverse') is [0 4 2 and cumin(X,2,'reverse') is [0 3 3
6 5 2] 2 2 2]
Also, cumin([8 9 1 10 6 1 3 6 10 10]) returns [8 8 1 1 1 1 1 1 1 1]
cumin([8 9 1 10 6 1 3 6 10 10]') returns [8 8 1 1 1 1 1 1 1 1]'
See also cumax.
Solution Stats
Problem Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers41
Suggested Problems
-
Return the 3n+1 sequence for n
8491 Solvers
-
Project Euler: Problem 4, Palindromic numbers
1266 Solvers
-
Right Triangle Side Lengths (Inspired by Project Euler Problem 39)
2039 Solvers
-
Back to basics - mean of corner elements of a matrix
462 Solvers
-
Max Change in Consecutive Elements
181 Solvers
More from this Author43
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!