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
Solution Comments
Show comments
Loading...
Problem Recent Solvers37
Suggested Problems
-
47338 Solvers
-
Find the longest sequence of 1's in a binary sequence.
6801 Solvers
-
609 Solvers
-
Given a square and a circle, please decide whether the square covers more area.
1830 Solvers
-
1104 Solvers
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Good one.