Problem 44457. Triangle of numbers
Create a matrix with the integers from 1 to n arranged in a triangular shape.
Every row i of the matrix contains i integers, and the rest of the elements are zeros.
Examples:
Input: n = 6
Output: mat = [1 0 0
2 3 0
4 5 6]
Input: n = 12
Output: mat = [1 0 0 0
2 3 0 0
4 5 6 0
7 8 9 10
11 12 0 0]
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers330
Suggested Problems
-
Find all elements less than 0 or greater than 10 and replace them with NaN
15774 Solvers
-
3036 Solvers
-
3079 Solvers
-
656 Solvers
-
Create an n-by-n null matrix and fill with ones certain positions
712 Solvers
More from this Author25
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!