We can create Matlab with multiple axes with command subplot.  Example : subplot(2,2,1); plot(x1,y1); subplot(2,2,2); plot(x1,y4); subplot(2,2,3); plot(x1,y4); subplot(2,2,4); plot(x1,y4); Output image from this Matlab with multiple axes code is : But when we create a gui program (with GUIDE) in matlab, we can not create Matlab GUI with multiple axes directly. This is a