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
-
Set the array elements whose value is 13 to 0
1438 Solvers
-
912 Solvers
-
362 Solvers
-
Test if a number is numeric or not
141 Solvers
-
Solve a System of Linear Equations
14291 Solvers
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Good one.