MATLAB Function Reference | Search  Help Desk |
home | Examples See Also |
home
home
returns the cursor to the upper-left corner of 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
clc