4. Consider the following small script M-file and function M-file. 4; y [2 3;6 7]; a(1,1) = dumbFunction(x,y(2,1)); func
Posted: Mon May 09, 2022 7:08 am
4. Consider the following small script M-file and function M-file. 4; y [2 3;6 7]; a(1,1) = dumbFunction(x,y(2,1)); function r = dumbFunction(a,b) r = b/a; return; Now, complete the following sentence by filling in the blanks. The numerical values and are passed into the function dumbFunction. The function returns the numerical value which is then stored in the variable