I am trying to display a large array into the command window but it gets truncated because the command window only shows so many lines. Is there a way to change the settings so that it shows everything printed in the command window?
I am currently calling the display like so:
disp(array);
This variable is a temporary one in a function so it does not get saved into the workspace variables, so thats why I am looking for a printing alternative.
Anyone have any suggestions?
Better way would be to save it in to a text file using fprintf() instead of cluttering up your command window.