MATLAB: Text box as subplot

textbox subplot insert figure

I would like to insert a textbox as a subplot in my figure. I have a figure with 3 graphs and the fourth subplot I would like to insert a textbox with exlpanantion.
Many thanks

Best Answer

Something like this?
figure(1)
p1 = subplot(4,1,1);
p2 = subplot(4,1,2);
p3 = subplot(4,1,3);
p4 = subplot(4,1,4);
text(0.5,0.5,'Explanation'); axis off