1 function screen( rows, columns, row, column )
2 %SCREEN sets the current figure into a certain possition. The screen is
3 %divided by the number of @rows and @column, and the figure is possition in
6 scrsz =
get(0,
'ScreenSize');
10 x = width/columns*(column-1);
11 y = height - height/rows*(row);
14 set(gcf,
'Position', [x y w h])