How do you clear the console in MATLAB? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T17:22:14Z http://stackoverflow.com/feeds/question/941335 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/941335/how-do-you-clear-the-console-in-matlab 3 How do you clear the console in MATLAB? John 2009-06-02T19:05:42Z 2009-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#941346 11 Answer by gnovice for How do you clear the console in MATLAB? gnovice 2009-06-02T19:07:46Z 2009-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>&gt;&gt; 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#941403 7 Answer by MatlabDoug for How do you clear the console in MATLAB? MatlabDoug 2009-06-02T19:17:19Z 2009-06-02T19:17:19Z <pre><code>&gt;&gt; clc %clear command </code></pre> <p>Related functions include:</p> <pre><code>&gt;&gt; clf %clear figure &gt;&gt; cla %clear axis &gt;&gt; close all %close all windows &gt;&gt; clear %clear workspace of variables </code></pre> http://stackoverflow.com/questions/941335/how-do-you-clear-the-console-in-matlab/946433#946433 0 Answer by Jonas Hallgren for How do you clear the console in MATLAB? Jonas Hallgren 2009-06-03T18:42:21Z 2009-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>