| Paket | Zweck | 
|---|---|
| Signal Processing Toolbox | Signalverarbeitung, Filter, .. | 
| Image Processing Toolbox | Bildbearbeitung | 
| Statistics and Machine Learning Toolbox | Statistische Beschreibung und Analyse von Daten | 
| Simulink | graphisches Simulations-Tool | 
| Simscape | Simulink-Blöcke für Physical Modeling | 
| Stateflow | Simulink-Blöcke für Zustandsdiagramme | 
| SimEvents | Simulink-Blöcke für Diskrete-Event-Simulation | 
| Matlab/Simulink Coder | C-Programm erzeugen aus Simulink-Modellen und MATLAB-Code | 


>> 12.567*31.34/(17 + 4) - 1.88e1
ans =
      -0.0452
                
 >> 1 - 5*0.2
ans =
     0
>> 1 - 0.2 - 0.2 - 0.2 - 0.2 - 0.2
ans =
     5.551115123125783e-17
                
 >> g = 9.81
g =
    9.8100
                
 >> T = 0.3;
>> omega = 2*pi/T;
>> t = 2.75;
>> A = 1.3;
>> x = A*sin(omega*t)
x =
    1.1258
                
 >> whos Name Size Bytes Class T 1x1 8 double A 1x1 8 double ans 1x1 8 double b 1x1 8 double g 1x1 8 double omega 1x1 8 double t 1x1 8 double x 1x1 8 double
