vote up 3 vote down star

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.

flag

80% accept rate

3 Answers

vote up 11 vote down check

Short answer, the CLC function:

>> clc

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

link|flag
vote up 0 vote down

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

link|flag
vote up 7 vote down
>> clc %clear command

Related functions include:

>> clf %clear figure
>> cla %clear axis
>> close all %close all windows
>> clear %clear workspace of variables
link|flag
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 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 at 13:17

Your Answer

Get an OpenID
or

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