Question: The trigonometric sine function can be expressed as the following infinite Taylor series: sin(x) = x - x^3/3! + x^5/5! - x^7/7! + x^9/9! -

The trigonometric sine function can be expressed as the following infinite Taylor series: sin(x) = x - x^3/3! + x^5/5! - x^7/7! + x^9/9! - ... Use the for loop control structure to write a MATLAB function m-file that evaluates the first n terms of this series. Your function should be defined as follows: function sinx = mysin(x, n) Although you may assume that the input arguments passed to your function will be numeric, your function should trap for invalid input argument values (e.g., nonpositive and/or noninteger values for n); if your program detects invalid input, it should display an appropriate error message and stop. You may not use the MATLAB built-in sin trigonometric function in your program. Name your submitted file mysin.m
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
