Skip main navigation

Hands-on: Finite difference

Calculate finite difference using vectorised operations.
© CSC - IT Center for Science Ltd.

In this exercise we study vectorization, which is crucial for obtaining good performance with NumPy.

Source code for this exercise is located in numpy/finite-difference/

Derivatives can be calculated numerically with the finite-difference method
as:

[f'(x_i) = frac{f(x_i + Delta x)- f(x_i – Delta x)}{2 Delta x}]

Construct 1D Numpy array containing the values of xi in the interval [0,π/2]
with spacing Δx=0.1. Evaluate numerically the derivative of sin in this
interval (excluding the end points) using the above formula. Try to avoid
for loops. Compare the result to function cos in the same interval.

© CSC - IT Center for Science Ltd.
This article is from the free online

Python in High Performance Computing

Created by
FutureLearn - Learning For Life

Reach your personal and professional goals

Unlock access to hundreds of expert online courses and degrees from top universities and educators to gain accredited qualifications and professional CV-building certificates.

Join over 18 million learners to launch, switch or build upon your career, all at your own pace, across a wide range of topic areas.

Start Learning now