Problem 2055. Create numeric palindromes and their square roots
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
Christian Schröder
on 18 Feb 2023
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.
Solution Comments
Show commentsProblem Recent Solvers22
Suggested Problems
-
Find all elements less than 0 or greater than 10 and replace them with NaN
15600 Solvers
-
Remove any row in which a NaN appears
8644 Solvers
-
Rotate input square matrix 90 degrees CCW without rot90
629 Solvers
-
Set the array elements whose value is 13 to 0
1375 Solvers
-
Generate a vector like 1,2,2,3,3,3,4,4,4,4
11874 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!