Question: Write a MATLAB function named my_calc The function will have one input and one return value. The first input, A, will be a list of
Write a MATLAB function named my_calc The function will have one input and one return value. The first input, A, will be a list of numbers. The return value, M, will be a list of numbers. Each value of M must be calculated using the corresponding value of A according to this equation: M=Acos(30)+5A3 Notes: Example Test Case: A = [0.20 0.40 0.60 0.80 0.100 0.20]; M = my_calc(A); results in M = [0.2132 0.6664 1.5996 3.2528 0.0916 0.2132] DO NOT include the test cases. Save Reset Submit to MATLAB
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
