up vote 7 down vote favorite
share [g+] share [fb]

How do you clear the console in MATLAB?

For example, I'm debugging a script that displays a ton of output. I want to clear the console on every run, so I don't have to look through output from old runs.

link|improve this question

feedback

3 Answers

up vote 17 down vote accepted

Short answer, the CLC function:

>> clc

You can also select Edit > Clear Command Window in the MATLAB desktop.

link|improve this answer
feedback
>> clc %clear command

Related functions include:

>> clf %clear figure
>> cla %clear axis
>> close all %close all windows
>> clear %clear workspace of variables
link|improve this answer
Years ago, I always found myself typing "closeall", instead of "close all". Lazy fingers, but it naturally generates an error. The simple solution was to create a simple idiom, the closeall function on my system. Problem solved. – woodchips Jun 3 '09 at 1:24
We used to have a function SHG (Show Graphics) from when computers were either in text or graphics mode. We then made SHG bring up the figure. In an effort to simplify the language we got rid of the command since figure(gcf) did the same thing. Well, after one release of complaints... >>edit shg So you are not alone woodchips... :) – MatlabDoug Jun 3 '09 at 13:17
feedback

One more option to achieve the clc is to right-clicking in the command window and choosing 'Clear command window'

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.