Determine the anti-diagonal (crossing from top right to lower left) of a magic square of size n.
Examples
If n = 3
y = 6 5 4
If n = 4
y = 13 10 7 4
Solution Stats
Problem Comments
3 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers118
Suggested Problems
-
Return the largest number that is adjacent to a zero
5517 Solvers
-
Project Euler: Problem 6, Natural numbers, squares and sums.
2542 Solvers
-
Sum of diagonal of a square matrix
1637 Solvers
-
Create a Multiplication table matrix...
691 Solvers
-
Given a matrix, return the last eigen value
233 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!
Please change test case. It is giving error.
y_correct=[13 10 7 4];
The brackets and the first test case has no function call.
I fixed the tests.