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 Solvers35
Suggested Problems
-
Generate a vector like 1,2,2,3,3,3,4,4,4,4
13694 Solvers
-
6101 Solvers
-
138 Solvers
-
Find the sides of an isosceles triangle when given its area and height from its base to apex
2144 Solvers
-
113 Solvers
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Good one.