Problem 1273. Max index of 3D array
Given a three dimensional array M(m,n,p) write a code that finds the three coordinates x,y,z of the Maximum value.
Example :
The input is F :
F=zeros(4,4,4); F(2,2,2)=10;
The output is
b=[2 2 2] % the coordinates
Solution Stats
Problem Comments
-
1 Comment
goc3
on 18 Nov 2016
The test suite has been expanded.
Solution Comments
Show commentsProblem Recent Solvers426
Suggested Problems
-
Find the longest sequence of 1's in a binary sequence.
6674 Solvers
-
Maximum running product for a string of numbers
2252 Solvers
-
Construct an index vector from two input vectors in vectorized fashion
448 Solvers
-
Permute diagonal and antidiagonal
500 Solvers
-
Get the elements of diagonal and antidiagonal for any m-by-n matrix
510 Solvers
More from this Author2
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!