Given a number n (1<=n<=9), return a left justified numeric matrix p with all the palindromes of the form 1 to n and back to 1. Use 0 for empty values. Similarly return the square root matrix in the same form.
Example
n=2;
p=[1 0 0; 1 2 1];
r=[1 0 0; 1 1 0];
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers27
Suggested Problems
-
Find the longest sequence of 1's in a binary sequence.
6847 Solvers
-
Replace NaNs with the number that appears to its left in the row.
3072 Solvers
-
Omit columns averages from a matrix
620 Solvers
-
Convert a numerical matrix into a cell array of strings
2556 Solvers
-
Given a window, how many subsets of a vector sum positive
873 Solvers
More from this Author11
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
The example given is at odds with the test suite: r should always be an n-by-n matrix, so for n = 2, r = [1 0; 1 1] is correct.