Problem 528. Find the largest value in the 3D matrix
Given a 3D matrix A, find the largest value.
Example
>> A = 1:9;
>> A = reshape(A,[3 1 3]);
>> islargest(A)
ans = 9
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers1592
Suggested Problems
-
Construct an index vector from two input vectors in vectorized fashion
424 Solvers
-
Return a list sorted by number of consecutive occurrences
409 Solvers
-
Generate a vector like 1,2,2,3,3,3,4,4,4,4
12757 Solvers
-
Natural numbers in string form
1727 Solvers
-
981 Solvers
More from this Author16
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!