You are on page 1of 2

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

% Auto-generated by MATLAB on 04-May-2023 15:12:39

% Create figure
figure1 = figure;

% Create axes
axes1 = axes('Parent',figure1);
hold(axes1,'on');

% Create plot
plot(t,V,'LineWidth',2,'Color',[1 0 0]);

% Create ylabel
ylabel('Vitesse(m/s)');

% Create xlabel
xlabel('Temps(s)');

box(axes1,'on');
% Set the remaining axes properties
set(axes1,'FontSize',16,'FontWeight','bold','XGrid',
'on','YGrid','on');
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Auto-generated by MATLAB on 04-May-2023 15:17:21

% Create figure
figure1 = figure;

% Create axes
axes1 = axes('Parent',figure1);
hold(axes1,'on');

% Create plot
plot(t,D,'LineWidth',2);

% Create ylabel
ylabel('Distance(m)');

% Create xlabel
xlabel('Temps(s)');

box(axes1,'on');
% Set the remaining axes properties
set(axes1,'FontSize',16,'FontWeight','bold','XGrid',
'on','YGrid','on');

You might also like