Problem 528. Find the largest value in the 3D matrix

Created by Bruce Raine

Given a 3D matrix, A, find the largest value.

E.g.

>> A = 1:9;

>> A=reshape(A,[3 1 3]);

>> islargest(A)

ans = 9

Tags

Problem Group

93 solvers submitted 124 solutions (1.33 solutions/solver).