Right now I am reading a folder and getting some plot logs. I have about 95 of them, and then I parse the log and plot2d and then animate a block over the positions in the log. It is taking a few minutes to get all of the plot windows to open. I am currently using the scf to open a new plot window. It isn't getting to the 95th plot and not doing any animation, so it appears to be dying right before the end, but there is no output on teh console. I am using Scilab 6.0
This is how i am creating the plot. I iterate through this based on how many logs are in the folder.
scf(newFolderIndex);
plot2d(xPosition,yPosition)
xtitle(logFolders(newFolderIndex))
I think you don't really need 100+ windows, you can not efficiently view them. You can do 2 things to prevent freezing and maybe speed up the process: Open only one graphic window (say 0), then: 1. plot the data 2. save to a file 3. clear the gaphic window 4. repeat from 1.
To speed up the drawing process, you can delay with
drawlater()
the actual display on the screen until the last graphical element is drawn, then issuedrawnow()
. If you have lots of datapoints, and especially multiple plot() commands, this can make a significant difference.Watching the saved files with an image viewer program is much convenient then switching between multiple graphic windows. Another advantage of the method is that if you resize the graphic window and rerun the program, all the graphs will have the same size. (But of course you may specify the window size explicitly with
f=gcf(); f.figure_size=[200,200];
)