Problem 58648. Draw the Greek letter 'α'
Given the dimensions of a matrix nRow and nCol where nCol > nRow, draw the Greek letter 'α' with 1's and 0's. You can consider the letter as a combination of 'c' and 'x'. For example:
A = [ 0 1 1 0 1;
1 0 0 1 0;
0 1 1 0 1] for nRow=3 and nCol=5;
A = [ 0 1 1 1 1 1 1 0 0 1;
1 0 0 0 0 0 0 1 1 0;
1 0 0 0 0 0 0 1 1 0;
0 1 1 1 1 1 1 0 0 1] for nRow=4 and nCol=10.
Solution Stats
Solution Comments
Show commentsProblem Recent Solvers12
Suggested Problems
-
Return the 3n+1 sequence for n
8480 Solvers
-
1838 Solvers
-
Replace all zeros and NaNs in a matrix with the string 'error'
103 Solvers
-
372 Solvers
-
Sum the 'edge' values of a matrix
396 Solvers
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!