Suppose I have an array, a = [2 5 4 7]. What is the function returning the maximum value and its index?
a = [2 5 4 7]
For example, in my case that function should return 7 as the maximum value and 4 as the index.
The function is max. To obtain the first maximum value you should do
max
[val, idx] = max(a);
val is the maximum value and idx is its index.
val
idx
1.4m articles
1.4m replys
5 comments
57.0k users