Berikut adalah source code membuat dua plot dalam satu figure di MATLAB.
function main
f = figure('menubar', 'none', 'position', [200 100 780 500]);
panel_plot = uipanel('title', 'plot area', ...
'units', 'pix', ...
'positioN', [10 50 750 400] , ...
'fontsize', 12);
g0 =axes('units','pixels','position',[50 50 300 300], ...
'xlim', [0 (2*pi)], ...
'parent', panel_plot);
g1 =axes('units','pixels','position',[400 50 300 300], ...
'xlim', [0 (2*pi)], ...
'parent', panel_plot);
x = 0:.1:2*pi;
plot(x, sin(x), 'parent', g1);
plot(x,sin(x.^2), 'parent', g0);
Dengan contoh plot