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 Solvers38
Suggested Problems
-
3450 Solvers
-
1297 Solvers
-
ベクトル [1 2 3 4 5 6 7 8 9 10] の作成
605 Solvers
-
112 Solvers
-
Return fibonacci sequence do not use loop and condition
873 Solvers
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Good one.