

MCQOPTIONS
Saved Bookmarks
1. |
Which code can be used for changing the dimensions of a matrix as follows? |
A. | reshape([1,2,3;4,5,6],1,6) |
B. | reshape([1,2,3;4,5,6];1;6) |
C. | reshape([1,2,3;4,5,6]:1:6) |
D. | reshape([1,2,3;4,5,6],6,1)View Answer |
Answer» B. reshape([1,2,3;4,5,6];1;6) | |