Jump to content

Numerical differentiation


hobz

Recommended Posts

I have written the following MATLAB code

h = 10e-12;
f = @(x)cos(2*pi*x);

x = 0:.01:pi;

fd = (f(x+h)-f(x-h))/(2*h);

hold on
plot(x,f(x))
plot(x,fd, 'r')

 

The result is quite surprising.

fd, which is the derivative of f evaluated numerically, has an amplitude roughly 6 times larger than what the real derivative is.

Can anyone explain how this comes to happen?

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.