[Scilab-users] Periodic Timer

2023-10-09 Thread Greg James
Hi Is there a periodic timer like the Matlab timer function ? The parallel run function does not seem to exist in the 2023.1.0 release , as I thought I may be able to use that instead. I am reading a large excel spreadsheet and it would be good to implement a progress bar . So, a periodic tim

Re: [Scilab-users] Periodic Timer

2023-10-10 Thread Greg James
ation, progression(). See https://help.scilab.org/docs/2023.1.0/fr_FR/progressionbar.html Regards, Federico Miyara On 10/10/2023 13:07, Steer Serge wrote: May be the realtime function may work as you expect. but I fear that the xlread function blocks the execution of realtime Serge Le 10/10/2023 à 01:31,

Re: [Scilab-users] Periodic Timer

2023-10-11 Thread Greg James
w.r.t. the overall size ot the data stream. The only case where something could be done is if your data is organized in many sheets within the xls file. In that case you could iterate on sheets and update a waitbar(). S, On 10/10/2023 01:31, Greg James wrote: Hi Is there a periodic timer like the Ma

Re: [Scilab-users] Periodic Timer

2023-10-12 Thread Greg James
progress. Regards, Federico Miyara On 11/10/2023 20:37, Greg James wrote: Hi That is what I have essentially done , just update the waitbar through sections of the code as read in multiple data sets. To have the ability to have a user thread would be great or a periodic timer that has a call