How do you clear the console in MATLAB? - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T17:22:14Zhttp://stackoverflow.com/feeds/question/941335http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/941335/how-do-you-clear-the-console-in-matlab3How do you clear the console in MATLAB?John2009-06-02T19:05:42Z2009-08-16T03:03:47Z
<p>How do you clear the console in MATLAB?</p>
<p>For example, I'm debugging a script that displays a <em>ton</em> of output. I want to clear the console on every run, so I don't have to look through output from old runs.</p>
http://stackoverflow.com/questions/941335/how-do-you-clear-the-console-in-matlab/941346#94134611Answer by gnovice for How do you clear the console in MATLAB?gnovice2009-06-02T19:07:46Z2009-06-02T19:07:46Z<p>Short answer, the <a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/clc.html" rel="nofollow">CLC</a> function:</p>
<pre><code>>> clc
</code></pre>
<p>You can also select <strong>Edit</strong> > <strong>Clear Command Window</strong> in the MATLAB desktop.</p>
http://stackoverflow.com/questions/941335/how-do-you-clear-the-console-in-matlab/941403#9414037Answer by MatlabDoug for How do you clear the console in MATLAB?MatlabDoug2009-06-02T19:17:19Z2009-06-02T19:17:19Z<pre><code>>> clc %clear command
</code></pre>
<p>Related functions include:</p>
<pre><code>>> clf %clear figure
>> cla %clear axis
>> close all %close all windows
>> clear %clear workspace of variables
</code></pre>
http://stackoverflow.com/questions/941335/how-do-you-clear-the-console-in-matlab/946433#9464330Answer by Jonas Hallgren for How do you clear the console in MATLAB?Jonas Hallgren2009-06-03T18:42:21Z2009-06-03T18:42:21Z<p>One more option to achieve the clc is to right-clicking in the command window and choosing 'Clear command window'</p>