Problem 55135. Draw a triangle of ones
For any given n, return a matrix that includes a triangle of ones of height n:
Example
n = 3
output = [0,0,1,0,0
0,1,1,1,0
1,1,1,1,1]
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers20
Suggested Problems
-
4469 Solvers
-
1409 Solvers
-
14774 Solvers
-
419 Solvers
-
Change the first and last diagonal element of the identity matrix to zero
150 Solvers
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!