Quick background, Octave GUI version 6.2.0 takes at least 20-30 seconds to initialize on one computer, but 1-2 seconds on another computer running the same version and same OS. I wanted to figure out where the holdup was, so I used the tic
and toc
timer functions in various places within the octaverc
startup file. At some point, I noticed that merely having tic
at the very end of the startup file completely fixed the slow initialize time.
So while my main issue is resolved (though I don't know why that worked), I wanted to see if using tic
without ever using toc
in an Octave session can cause any issues, e.g., does this leave some timer process running in the background? Thanks in advance.