Re: [Scilab-users] Periodic Timer

2023-10-15 Thread Hani
as the excel reads are slow because of the size of the data . Cheers Greg *From: *users on behalf of Stéphane Mottelet *Date: *Wednesday, 11 October 2023 at 5:52 pm *To: *users@lists.scilab.org *Subject: *Re: [Scilab-users] Periodic Timer Hello, You have the progession bar, i.e

Re: [Scilab-users] Periodic Timer

2023-10-12 Thread Greg James
at 1:01 pm To: users@lists.scilab.org Subject: Re: [Scilab-users] Periodic Timer What about my proposal of just informing an estimate of the time at which the load of the excel is expected to de complete? This is fairly easy and complies with the requisite of telling the user that the load

Re: [Scilab-users] Periodic Timer

2023-10-11 Thread Federico Miyara
October 2023 at 5:52 pm To: users@lists.scilab.org<mailto:users@lists.scilab.org> <mailto:users@lists.scilab.org> Subject: Re: [Scilab-users] Periodic Timer Hello, You have the progession bar, i.e. progressionbar('Please wait while loading data'); which is incorrectly nam

Re: [Scilab-users] Periodic Timer

2023-10-11 Thread Greg James
, all I want is to give the user feedback that something is happening as the excel reads are slow because of the size of the data . Cheers Greg From: users on behalf of Stéphane Mottelet Date: Wednesday, 11 October 2023 at 5:52 pm To: users@lists.scilab.org Subject: Re: [Scilab-users

Re: [Scilab-users] Periodic Timer

2023-10-11 Thread Stéphane Mottelet
Hello, You have the progession bar, i.e. progressionbar('Please wait while loading data'); which is incorrectly named as it cannot show any progression (unlike waitbar()) but only a kind of bar which oscillates, showing that something is happening. This one will keep oscillating in an

Re: [Scilab-users] Periodic Timer

2023-10-10 Thread Federico Miyara
3 at 8:12 am To: users@lists.scilab.org<mailto:users@lists.scilab.org> <mailto:users@lists.scilab.org> Subject: Re: [Scilab-users] Periodic Timer I've just come across the function waitbar(); I think it could help. See https://help.scilab.org/docs/2023.1.0/fr_FR/waitbar.html Y

Re: [Scilab-users] Periodic Timer

2023-10-10 Thread Greg James
of Federico Miyara Date: Wednesday, 11 October 2023 at 8:12 am To: users@lists.scilab.org Subject: Re: [Scilab-users] Periodic Timer I've just come across the function waitbar(); I think it could help. See https://help.scilab.org/docs/2023.1.0/fr_FR/waitbar.html You also have a variation

Re: [Scilab-users] Periodic Timer

2023-10-10 Thread Federico Miyara
I've just come across the function waitbar(); I think it could help. See https://help.scilab.org/docs/2023.1.0/fr_FR/waitbar.html You also have a variation, progression(). See https://help.scilab.org/docs/2023.1.0/fr_FR/progressionbar.html Regards, Federico Miyara On 10/10/2023 13:07,

Re: [Scilab-users] Periodic Timer

2023-10-10 Thread Steer Serge
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, Greg James a écrit : Hi Is there a periodic timer like the Matlab timer function ? The parallel run function does not seem to exist in the

[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