Problem 55140. Draw 'W'
For any given n, return a matrix of height n and width 4n-3 containing a W of ones.
Example:
n=2
ans=
[1 0 1 0 1
0 1 0 1 0]
n=3
ans=
[1 0 0 0 1 0 0 0 1
0 1 0 1 0 1 0 1 0
0 0 1 0 0 0 1 0 0]
Solution Stats
Problem Comments
-
1 Comment
Bharati
on 14 Jul 2023
Good one.
Solution Comments
Show commentsProblem Recent Solvers33
Suggested Problems
-
Sum of first n terms of a harmonic progression
435 Solvers
-
345 Solvers
-
270 Solvers
-
calculate the length of matrix
1895 Solvers
-
550 Solvers
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!