Question: Exercise 1 : Stencil operations & slicing f ( x ) = ( ( x ^ ( 2 ) + 4 x + 5 )

Exercise 1: Stencil operations & slicing f(x)=((x^(2)+4x+5)/(x+2e^(x)))^(2x) Hint: Remember the use of the lambda function. # YOUR CODE HERE raise NotImplementedError() b) Calculate the derivative of f(x) with the central difference formula (below), save result in the variable fprime . f^(')(x_(i))~~(f(x_(i+1))-f(x_(i-1)))/(2\Delta x) # YOUR CODE HERE raise NotImplementedError() We add to y a scaled noise as follows # RUN THIS CELL. DO NOT MODIFY. numpy. random. seed (42) numpy. random. rand (y*size)**2-1 fprime_noise = numpy.gradient (yn,0.001) c) Next step is to compute smoothed values of the noisy data (yn) by using the average of a point with its two nearby neighbors. Use slicing to compute the following, save your result in a variable called y_smooth . y_(smooth )=(y_(i-1)+y_(i)+y_(i+1))/(3) # YOUR CODE HERE raise NotImplementedError() d) Using an average of 5 points as follows: y_(smooth _(()5))=(y_(i-2)+y_(i-1)+y_(i)+y_(i+1)+y_(i+2))/(5) Save your result in a variable called y_smooth_5. # YOUR CODE HERE raise NotImplementedError()

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!