MATLAB: Text output in subplot

graphoutputsubplot

Hi,
I have a graph composed of subplot (3×2) and I wish to add an extra data (results of calculations, 4 variables) instead of a graph at position (3, 2, 5).
How can I do it?
Thanks.

Best Answer

ax = subplot(3, 2, 5);
text(0.5,0.5,countstr);
set ( ax, 'visible', 'off')