Problem 1 Write a function ColumnArray with no inputs and on
Problem #1. Write a function, ColumnArray, with no inputs and one array output. Internally, your function should construct the following array using the square bracket operator and should output the array.
and arrayY which is equal to the transpose of arrayX.
Solution
array Y is the transpose of array x
array Y =
| 1 | 6 |
| 4 | 8 |
| 3 | 9 |
| 7 | 5 |
| 2 | 1 |
