Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Matlab 2n+1 sin(x) = 2n cos(x) - (2n)! n! n=0 To perform the summation, use a conditional while loop using the constant, eps, as your

Matlab image text in transcribed
2n+1 sin(x) = 2n cos(x) - (2n)! n! n=0 To perform the summation, use a conditional while loop using the constant, eps, as your precision. Your functions must be able to work on scalars, vector or 2D matrices. This can be done using nested for loops to scan every element of the input array and use it as the value of x in the infinite series. Your functions must return an array of the same size as the input array where every element of the output array will be either the sine, the cosine or the exponential of every element of the input array and at the same position (row, column). For example, if the input array is [O pi/6 pi/3 pi/2 - -], the output of MySin function must be in the form [0 0.5000 0.8660 1.0000 ] (5 pts) Use your functions in the command window to determine the following a) sin(n/3): sin([-? -?/2 0 ?/2 b) cos(?/3); cos(l-r -r/2 0 ?/2 c) exp(I-5 -3 -1 2 4]) d) sin(A), cos(A), exp(A) where A ?) ?) [-pi:pi/3:pii -pi/2:pi/3:3 pi/2;- pi : pi/3:pi] Compare the results of your functions for parts a) to d) with that determined using the built in MATLAB functions sin, cos and exp. (10 pts) Write a script file HW7P4.m that uses your functions to produce One plot of the sine and cosine curve together in the interval-2? to 2?. You can use either the plot command with 100 points or the fplot () function. Use different line styles and annotate your plot. Another plot in a new figure window with 2 subplots in one column. The upper plot is your exponential function in the range 0.1 to 10 with linear scale for both the x and y axis. The lower plot is the same function with logarithmic scale for the y axis only

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Databases A Beginners Guide

Authors: Andy Oppel

1st Edition

007160846X, 978-0071608466

More Books

Students also viewed these Databases questions

Question

Is conflict always unhealthy? Why or why not? (Objective 4)

Answered: 1 week ago