**If you have loved the problem, please like it below(Request)**
Given an integer n, create a matrix whose diagonal elements will be square matrices of size 1 to n.
For example:
n=2
z =
1 0 0
0 2 2
0 2 2
n=3
z =
1 0 0 0 0 0
0 2 2 0 0 0
0 2 2 0 0 0
0 0 0 3 3 3
0 0 0 3 3 3
0 0 0 3 3 3
Solution Stats
Solution Comments
Show comments
Loading...
Problem Recent Solvers21
Suggested Problems
-
Given two arrays, find the maximum overlap
1812 Solvers
-
How to find the position of an element in a vector without using the find function
2822 Solvers
-
Project Euler: Problem 2, Sum of even Fibonacci
2917 Solvers
-
633 Solvers
-
Convert from Base 10 to base 5
325 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!