Question: Write a function myones that will receive three input arguments m, n and p and will return an mxnxp matrix of all ones. Do NOT

Write a function myones that will receive three input arguments m, n and p and will return an mxnxp matrix of all ones. Do NOT use any built-in functions, use loops (so, yes, the code will be inefficient) For example: Test assert(isequal (myones (4, 6, 3), ones (4, 6, 3))) assert (isequal (myones (2, 5, 1), ones (2, 5, 1))) assert (isequal (myones (1, 2, 3), ones (1, 2, 3))) assert (isequal (myones (3, 2, 1), ones (3, 2, 1))) assert(isequal(myones (10, 5, 2), ones (10, 5, 2))) Result
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
