Variabel simbolik Matlab

% Creating symbolic variables with 2 different methods:
% 1:
syms x
% 2:
y = sym('y')
Flyhouse_Squarewheel