Given a plot of three curves in a .fig file I\'d like to add another plot (with hold all and plot), but put it behind one of the already e
hold all
plot
The resolution given by @Jonas using 'Children' property does not work in its given format. It should be modified as follows:
'Children'
chH = get(gca,'Children') set(gca,'Children',flipud(chH))