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

Exercise 1: Stencil operations & slicing
f(x)=(x2+4x+5x+2ex)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'(xi)~~f(xi+1)-f(xi-1)2x
# 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 .
ysmooth=yi-1+yi+yi+13
# YOUR CODE HERE
raise NotImplementedError()
d) Using an average of 5 points as follows:
 Exercise 1: Stencil operations & slicing f(x)=(x2+4x+5x+2ex)2x Hint: Remember the use

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!