function plot_pause x = rand (10,1); y = rand (size (x)); figure(); plot (x,y); pause (); figure(); plot (y,x); pause (); figure(); plot (x,y); return; endfunction