Write a function batch file called "calc_sin_function.m" with the input arguments A, a, b. The
function should return f and t vectors, but should not plot anything. Then run the function call as:
>> [f1, t1] = calc_sin_function(1, 3, .3);
>> [f2, t2] = calc_sin_function(1, 5, .1);
You can also manually plot the function on the command line:
>> plot(t1, f1, t2, f2)
Save your result and code to include in writeup. Call professor to verify your results.