Scientific Computing with MATLAB and Others
General
- MATLAB@RWTH Aachen our campus licence :-),
- Frequently Asked Questions
- Mathworks the home of MATLAB,
- Octave a nice MATLAB clone; version 3 will have MATLAB-style plotting,
- Scilab a MATLAB-inspired scientific environment,
- Scipy scientific computation with Python,
- Matplot MATLAB-style plotting in Python.
Tutorials
- MATLAB and Octave Reference (German) from CATS,
- MATLAB Tutorial from Mathworks,
- MATLAB Introduction (German) from RWTH Aachen IRT,
- MATLAB-Learning (German, login required) from RWTH Aachen IRT,
- MATLAB Introduction (German) from University of Karlsruhe,
- MATLAB Introduction (German) from the University of Mainz,
- Matlab Primer from Stanford; unfortunately, the link is down at the moment.
CES Mechanics I
- MATLAB Quiz 1 (German) on matrices
- MATLAB Quiz 2 (German) on functions
- MATLAB Quiz 3 (German) on plotting
CES Mechanics II
ODE Examples from Lecture N1
our implementation of euler methods
-
myforwardeuler.mforward resp. explicit euler, -
myimpliciteuler.mbackward resp. implicit euler.
air damped oscillator (non-stiff system)
-
ode_harmonic.m,jacobi_harmonic.mthe model, -
harmonic_script.mwith this script we compare forward and backward euler.
van-der-pol DGL (stiff system)
-
vdp10.m,vdp10_jacobi.mnot so stiff model, -
vdp100.m,vdp100_jacobi.mmedium stiff model, -
vdp1000.m,vdp1000_jacobi.mstiff model, -
vdp_script.mcomparing Runge-Kutta, BDF and Euler Methods.
lorenz attractor (chaotic system)
-
lorenz.mthe model, -
lorenz_script.mjust play with the model.
3-body-problem (sun-earth-mars)
-
ode3bodies.mthe model, -
test3bodies.mcomparing ode23 with ode45.




