Find the maximum value of a given vector or matrix.
Solution Stats
Problem Comments
8 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers12073
Suggested Problems
-
How to find the position of an element in a vector without using the find function
2818 Solvers
-
Return the first and last characters of a character array
12252 Solvers
-
1069 Solvers
-
4684 Solvers
-
Find x rows where the sum of the numbers is the maximum
590 Solvers
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
What is the interest ?
15.99% per annum.
Good problem
nice question with many ways to solve
good problem
function y=your_fcn_name(x)
y=max(x(:));
end
funtion Y=your-fcn-name(x)
y=max(max(x));;
end
good problem