The essential tool for engineers and researchers. Numerical computing, data visualization, simulations and signal processing. 18 modules, 65+ practical exercises.
The #1 tool for scientific computing and engineering
Matrices, linear algebra, differential equations
2D, 3D graphics, animations and interactive plots
Introduction to Simulink for dynamic systems
Perfect for university projects and research
18 modules from basics to advanced applications
+ 6 advanced modules including:
Signal Processing Basics β’ Image Processing Intro β’ Optimization (fminunc) β’ Statistics & Data Analysis β’ GUI Development (App Designer) β’ Final Engineering Projects
Explore MATLAB before you buy
MATLAB (MATrix LABoratory) is a numerical computing environment and programming language developed by MathWorks. It is extensively used in:
MATLAB is optimized for matrix operations. Avoid for loops when you can - use vectorized operations which are much faster!
% Creating matrices A = [1, 2, 3; 4, 5, 6; 7, 8, 9]; % 3x3 matrix v = 1:10; % Vector [1, 2, ..., 10] z = zeros(3, 3); % Matrix of zeros I = eye(4); % 4x4 identity matrix % Operations B = A'; % Transpose C = A * B; % Matrix multiplication D = A .* B; % Element-wise multiplication % Indexing element = A(2, 3); % Element from row 2, column 3 column = A(:, 2); % Entire column 2 submatrix = A(1:2, :); % First 2 rows
% Sine and cosine function graph
x = 0:0.1:2*pi;
y1 = sin(x);
y2 = cos(x);
figure;
plot(x, y1, 'b-', 'LineWidth', 2);
hold on;
plot(x, y2, 'r--', 'LineWidth', 2);
hold off;
title('Trigonometric Functions');
xlabel('x (radians)');
ylabel('Amplitude');
legend('sin(x)', 'cos(x)');
grid on;
In MATLAB, indexing starts from 1, not from 0 like in other languages (Python, C, Java)!
Go to the "Editor" tab and write your own MATLAB code!
t = 0:0.01:1y = exp(-t) .* sin(10*t)"The course helped me enormously with my thesis project. The 3D graphics and Simulink were exactly what I needed!"
"I finally understand how ode45 works! The explanations are clear and the practical examples are excellent."
"I work in research and MATLAB is essential. The course covers exactly what I use daily."
From matrices to Simulink. The essential tool for engineers and researchers.
π‘ All prices shown do not include VAT or other applicable local taxes. Taxes will be calculated at checkout based on your location.
MATLAB is used by NASA, automotive engineers and researchers worldwide. Learn it now.
πBuy Course - β¬55π‘ All prices shown do not include VAT or other applicable local taxes. Taxes will be calculated at checkout based on your location.