MATLAB Function Reference | Search  Help Desk |
clc | Examples See Also |
clc
clc
clears the command window.
Display a sequence of random matrices at the same location in the command window:
clc
for i =1:25
home
A = rand(5)
end
clf
, home