MATLAB: How to find biggest element of the array

array

I am aware max(A) will give me the biggest element, however it gives me another array with all the biggest elements.
Is there a way to do something like max(max(A))?

Best Answer

max(A(:))
Related Question