MATLAB Functions | Help Desk |
home
Send the cursor homehome
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