Question: Part A: Write a function that meets the following expectations: Function name: udf_Sample Inputs: b g Outputs: t Operations to be coded within the function:

Part A: Write a function that meets the following expectations: Function name: udf_Sample Inputs: b g Outputs: t Operations to be coded within the function: y = a / g; t = (b + 11) - 2; k = y + t; Display k to the Command Window with 2 decimal places Use the m-file template provided in the assignment files. Part B Clear all variables out of your workspace. Then, enter the following command into Command Window. >> outi, out2] = udf_Sample (70,95,25) Are any of the inputs defined in the Workspace? Why or why not? Part C Clear all variables out of your workspace. Then, enter the following commands into Command Window. >> ini = 62; >> in2 = 81; >> in3 = 21; >> [out2] = udf_Sample (inl, in2, in3) C.1: Is the first output argument value available in the workspace? Why or why not? C.2: Is the variable 'k' visible in the Workspace? Why or why not? Part D Rewrite the function definition line so that no output arguments are shared to the Workspace
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
