Problem 56155. Return the middle element of an NxN square matrix where N is odd
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
Christian Schröder
on 11 Nov 2022
The problem description doesn't match the test suite --- the input matrix can in fact be non-square.
Solution Comments
Show commentsProblem Recent Solvers24
Suggested Problems
-
Find the longest sequence of 1's in a binary sequence.
6261 Solvers
-
Swap the first and last columns
20572 Solvers
-
Project Euler: Problem 7, Nth prime
1469 Solvers
-
First non-zero element in each column
861 Solvers
-
Celsius to Fahrenheit converter
611 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!