Let's say you are given an NxN square matrix where N is always going to be an odd number:
x = [ 1 2 3
4 5 6
7 8 9 ]
Your function should return 5.
Edge Case: Your solution must be able to handle empty matrices, and return a NaN in that case like:
% Input Matrix
x = []
% Correct answer returned by your function
y = NaN
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers28
Suggested Problems
-
Make a random, non-repeating vector.
11812 Solvers
-
Create an n-by-n null matrix and fill with ones certain positions
738 Solvers
-
Matlab Basics - Convert a row vector to a column vector
685 Solvers
-
Make an identity matrix whose diagonal elements are 1:n
131 Solvers
-
1023 Solvers
More from this Author1
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
The problem description doesn't match the test suite --- the input matrix can in fact be non-square.