MATLAB: Writing a table into a subplot of a figure

figuresubplottabletext;

I would like to create a figure with a few subplots, at least one of these being a data table to show the statistics (mean, st. dev., st. err.) of some measurements in the plots.
How do I write a table into a figure? I have tried fprintf, disp, sprintf, all of which write into the workspace, and I have tried text which is good for writing something, but not necessarily the organization of a table. Sometimes numbers will be big and other times they will be small, so using the text command becomes complicated in laying out the table and having it fit into the subplot.
Is there a function for a table? Is there an easier way to do it with text? Can I have a table without figure axes?

Best Answer

I think you are looking for this:
Related Question