% Create figure
figure1 = figure('Name','purple_background',...
'Color',[0.4784 0.06275 0.8941]);
colormap('hsv');
% Create subplot
subplot(1,1,1,'Parent',figure1);
box('on');
% Create axis labels
xlabel('x-axis');
ylabel({'y-axis'})
% Create title
title({'Title'});
23 Presenting MATLAB Code