From fmiyara at fceia.unr.edu.ar Mon Aug 2 04:36:09 2021 From: fmiyara at fceia.unr.edu.ar (Federico Miyara) Date: Sun, 1 Aug 2021 23:36:09 -0300 Subject: [Scilab-users] How to get path of an open file Message-ID: <55892ed0-ca5e-660a-eeba-bbdde8861f2a@fceia.unr.edu.ar> Dear all, I need to get the full path of a file opened in Scilab from the fid number provided by mopen(). The closest shot is dispfiles(fid), but I couldn't find a way to save the path to a variable (that's what I actually need), since dispfiles() has zero output arguments. Thanks, Federico Miyara -- El software de antivirus Avast ha analizado este correo electr?nico en busca de virus. https://www.avast.com/antivirus -------------- next part -------------- An HTML attachment was scrubbed... URL: From fmiyara at fceia.unr.edu.ar Mon Aug 2 07:18:05 2021 From: fmiyara at fceia.unr.edu.ar (Federico Miyara) Date: Mon, 2 Aug 2021 02:18:05 -0300 Subject: [Scilab-users] [Posible FRAUDE] How to get path of an open file In-Reply-To: <55892ed0-ca5e-660a-eeba-bbdde8861f2a@fceia.unr.edu.ar> References: <55892ed0-ca5e-660a-eeba-bbdde8861f2a@fceia.unr.edu.ar> Message-ID: <4b2ff546-7e19-4c63-967e-704bb5dd1e1d@fceia.unr.edu.ar> Sorry, I've already found that file() is the answer to my requirement. Federico Miyara On 01/08/2021 23:36, Federico Miyara wrote: > > Dear all, > > I need to get the full path of a file opened in Scilab from the fid > number provided by mopen(). > > The closest shot is dispfiles(fid), but I couldn't find a way to save > the path to a variable (that's what I actually need), since > dispfiles() has zero output arguments. > > Thanks, > > Federico Miyara > > > Libre de virus. www.avast.com > > > > <#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2> > > _______________________________________________ > users mailing list > users at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/users -- El software de antivirus Avast ha analizado este correo electr?nico en busca de virus. https://www.avast.com/antivirus -------------- next part -------------- An HTML attachment was scrubbed... URL: From arctica1963 at gmail.com Sun Aug 15 09:00:02 2021 From: arctica1963 at gmail.com (Lester Anderson) Date: Sun, 15 Aug 2021 08:00:02 +0100 Subject: [Scilab-users] Loop query Message-ID: Hello, Basic query. I have a simple code that applies the Collatz conjecture equation (3n+1) by running a function and then runs a loop over the values stored in prime (the first 8 Prime numbers): clear exec('collatz.sci',-1); prime = primes(20); for i = 1:length(prime) [ns, seq]=collatz(prime(i))end As it stands, this just runs to the end (i=8) and the value 19. How can I get the code to write the results of each loop pass into the variables ns and seq, such that each contains the results of the 8 passes? Can no longer search the forums online from the website. Thanks Lester -------------- next part -------------- An HTML attachment was scrubbed... URL: From sgougeon at free.fr Sun Aug 15 10:23:18 2021 From: sgougeon at free.fr (Samuel Gougeon) Date: Sun, 15 Aug 2021 10:23:18 +0200 Subject: [Scilab-users] Loop query In-Reply-To: References: Message-ID: <7f780665-afbc-0834-1628-66bec212d8f4@free.fr> Le 15/08/2021 ? 09:00, Lester Anderson a ?crit?: > Hello, > > Basic query. I have a simple code that applies the Collatz conjecture > equation (3n+1) by running a function and then runs a loop over the > values stored in prime (the first 8 Prime numbers): > > clear > exec('collatz.sci',-1); > > prime = primes(20); > > for i = 1:length(prime) > [ns, seq]=collatz(prime(i)) > end > As it stands, this just runs to the end (i=8) and the value 19. How > can I get the code to write the results of each loop pass into the > variables ns and seq, such that each contains the results of the 8 passes? This runs all the 8 iterations, but each next iteration overwrites ns and seq. What are the sizes of ns and seq ? -------------- next part -------------- An HTML attachment was scrubbed... URL: From arctica1963 at gmail.com Sun Aug 15 11:28:11 2021 From: arctica1963 at gmail.com (Lester Anderson) Date: Sun, 15 Aug 2021 10:28:11 +0100 Subject: [Scilab-users] Loop query In-Reply-To: <7f780665-afbc-0834-1628-66bec212d8f4@free.fr> References: <7f780665-afbc-0834-1628-66bec212d8f4@free.fr> Message-ID: Hello Samuel, The size of ns (number of steps) and seq (sequence of values) are variable depending on the integer input, and this seems to be one issue. So I guess the problem is how to allocate dynamic arrays where you do not know the final size? This is a direct translation of a Matlab function: function [ns, seq]=collatz(n) // Translation of Matlab function// First number in the sequence is nseq(1) = n;// Position an index on the next element of the sequencei = 2; // Repeat the iteration until you find a 1while seq(i-1) ~= 1 // Use a modulus after division to find an even/odd number if modulo(seq(i-1), 2) == 0 // Step taken if even seq(i) = seq(i-1)/2; else // Step taken if odd seq(i) = 3*seq(i-1) + 1; end // Increment index i = i+1;end// Find the length of the sequencens = length(seq);endfunction Lester On Sun, 15 Aug 2021 at 09:24, Samuel Gougeon wrote: > Le 15/08/2021 ? 09:00, Lester Anderson a ?crit : > > Hello, > > Basic query. I have a simple code that applies the Collatz conjecture > equation (3n+1) by running a function and then runs a loop over the values > stored in prime (the first 8 Prime numbers): > > clear > > exec('collatz.sci',-1); > prime = primes(20); > for i = 1:length(prime) > [ns, seq]=collatz(prime(i))end > > As it stands, this just runs to the end (i=8) and the value 19. How can I > get the code to write the results of each loop pass into the variables ns > and seq, such that each contains the results of the 8 passes? > > > This runs all the 8 iterations, but each next iteration overwrites ns and > seq. > What are the sizes of ns and seq ? > > _______________________________________________ > users mailing list > users at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/users > -------------- next part -------------- An HTML attachment was scrubbed... URL: From sdr at durietz.se Sun Aug 15 11:55:22 2021 From: sdr at durietz.se (Stefan Du Rietz) Date: Sun, 15 Aug 2021 11:55:22 +0200 Subject: [Scilab-users] Loop query In-Reply-To: References: Message-ID: <5a2f2ee5-cfe5-81a0-1c56-baf88b9d89a9@durietz.se> On 2021-08-15 09:00, Lester Anderson wrote: > Hello, > > Basic query. I have a simple code that applies the Collatz conjecture > equation (3n+1) by running a function and then runs a loop over the > values stored in prime (the first 8 Prime numbers): > > clear > > exec('collatz.sci',-1); > > prime = primes(20); > > for i = 1:length(prime) > [ns, seq]=collatz(prime(i)) > end > > As it stands, this just runs to the end (i=8) and the value 19. How can > I get the code to write the results of each loop pass into the variables > ns and seq, such that each contains the results of the 8 passes? > > Can no longer search?the forums online from the website. > > Thanks > Lester // Before the for loop: ns = zeros(prime); seq = ns; // Changed for loop for i = 1:length(prime) [ns(i), seq(i)]=collatz(prime(i)) end Regards Stefan From arctica1963 at gmail.com Sun Aug 15 12:05:44 2021 From: arctica1963 at gmail.com (Lester Anderson) Date: Sun, 15 Aug 2021 11:05:44 +0100 Subject: [Scilab-users] Loop query In-Reply-To: <5a2f2ee5-cfe5-81a0-1c56-baf88b9d89a9@durietz.se> References: <5a2f2ee5-cfe5-81a0-1c56-baf88b9d89a9@durietz.se> Message-ID: Hi Stefan, I did try that before, but got an error - "Submatrix incorrectly defined" Lester On Sun, 15 Aug 2021 at 10:56, Stefan Du Rietz wrote: > > > On 2021-08-15 09:00, Lester Anderson wrote: > > Hello, > > > > Basic query. I have a simple code that applies the Collatz conjecture > > equation (3n+1) by running a function and then runs a loop over the > > values stored in prime (the first 8 Prime numbers): > > > > clear > > > > exec('collatz.sci',-1); > > > > prime = primes(20); > > > > for i = 1:length(prime) > > [ns, seq]=collatz(prime(i)) > > end > > > > As it stands, this just runs to the end (i=8) and the value 19. How can > > I get the code to write the results of each loop pass into the variables > > ns and seq, such that each contains the results of the 8 passes? > > > > Can no longer search the forums online from the website. > > > > Thanks > > Lester > > > // Before the for loop: > ns = zeros(prime); > seq = ns; > > // Changed for loop > for i = 1:length(prime) > [ns(i), seq(i)]=collatz(prime(i)) > end > > Regards > Stefan > _______________________________________________ > users mailing list > users at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/users > -------------- next part -------------- An HTML attachment was scrubbed... URL: From sdr at durietz.se Sun Aug 15 12:58:45 2021 From: sdr at durietz.se (Stefan Du Rietz) Date: Sun, 15 Aug 2021 12:58:45 +0200 Subject: [Scilab-users] Loop query In-Reply-To: References: <5a2f2ee5-cfe5-81a0-1c56-baf88b9d89a9@durietz.se> Message-ID: <81ad0c70-90d4-7f67-2881-b27682e5fd52@durietz.se> Hello Lester, the problem is that seq in each loop is a vector of increasing length! Stefan On 2021-08-15 12:05, Lester Anderson wrote: > Hi Stefan, > > I did try that before, but got an error - "Submatrix incorrectly defined" > > Lester > > On Sun, 15 Aug 2021 at 10:56, Stefan Du Rietz > wrote: > > > > On 2021-08-15 09:00, Lester Anderson wrote: > > Hello, > > > > Basic query. I have a simple code that applies the Collatz > conjecture > > equation (3n+1) by running a function and then runs a loop over the > > values stored in prime (the first 8 Prime numbers): > > > > clear > > > > exec('collatz.sci',-1); > > > > prime? =? primes(20); > > > > for? i? =? 1:length(prime) > >? ? ? [ns,? seq]=collatz(prime(i)) > > end > > > > As it stands, this just runs to the end (i=8) and the value 19. > How can > > I get the code to write the results of each loop pass into the > variables > > ns and seq, such that each contains the results of the 8 passes? > > > > Can no longer search?the forums online from the website. > > > > Thanks > > Lester > > > // Before the for loop: > ns = zeros(prime); > seq = ns; > > // Changed for loop > for? i? =? 1:length(prime) > ? ? ?[ns(i),? seq(i)]=collatz(prime(i)) > end > > Regards > Stefan > _______________________________________________ > users mailing list > users at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/users > > > > _______________________________________________ > users mailing list > users at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/users > From arctica1963 at gmail.com Sun Aug 15 13:03:40 2021 From: arctica1963 at gmail.com (Lester Anderson) Date: Sun, 15 Aug 2021 12:03:40 +0100 Subject: [Scilab-users] Loop query In-Reply-To: <81ad0c70-90d4-7f67-2881-b27682e5fd52@durietz.se> References: <5a2f2ee5-cfe5-81a0-1c56-baf88b9d89a9@durietz.se> <81ad0c70-90d4-7f67-2881-b27682e5fd52@durietz.se> Message-ID: Hi Stefan, Thank you for clarifying the meaning of the error message. Lester On Sun, 15 Aug 2021 at 11:59, Stefan Du Rietz wrote: > Hello Lester, > the problem is that seq in each loop is a vector of increasing length! > > Stefan > > > On 2021-08-15 12:05, Lester Anderson wrote: > > Hi Stefan, > > > > I did try that before, but got an error - "Submatrix incorrectly defined" > > > > Lester > > > > On Sun, 15 Aug 2021 at 10:56, Stefan Du Rietz > > wrote: > > > > > > > > On 2021-08-15 09:00, Lester Anderson wrote: > > > Hello, > > > > > > Basic query. I have a simple code that applies the Collatz > > conjecture > > > equation (3n+1) by running a function and then runs a loop over > the > > > values stored in prime (the first 8 Prime numbers): > > > > > > clear > > > > > > exec('collatz.sci',-1); > > > > > > prime = primes(20); > > > > > > for i = 1:length(prime) > > > [ns, seq]=collatz(prime(i)) > > > end > > > > > > As it stands, this just runs to the end (i=8) and the value 19. > > How can > > > I get the code to write the results of each loop pass into the > > variables > > > ns and seq, such that each contains the results of the 8 passes? > > > > > > Can no longer search the forums online from the website. > > > > > > Thanks > > > Lester > > > > > > // Before the for loop: > > ns = zeros(prime); > > seq = ns; > > > > // Changed for loop > > for i = 1:length(prime) > > [ns(i), seq(i)]=collatz(prime(i)) > > end > > > > Regards > > Stefan > > _______________________________________________ > > users mailing list > > users at lists.scilab.org > > http://lists.scilab.org/mailman/listinfo/users > > > > > > > > _______________________________________________ > > users mailing list > > users at lists.scilab.org > > http://lists.scilab.org/mailman/listinfo/users > > > _______________________________________________ > users mailing list > users at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/users > -------------- next part -------------- An HTML attachment was scrubbed... URL: From sgougeon at free.fr Sun Aug 15 15:54:58 2021 From: sgougeon at free.fr (Samuel Gougeon) Date: Sun, 15 Aug 2021 15:54:58 +0200 Subject: [Scilab-users] Loop query In-Reply-To: References: <7f780665-afbc-0834-1628-66bec212d8f4@free.fr> Message-ID: Le 15/08/2021 ? 11:28, Lester Anderson a ?crit?: > Hello Samuel, > > The size of ns (number of steps) and seq (sequence of values) are > variable depending on the integer input,?and this seems to?be one issue. For this reason, seq must be a list, leading to function [ns, seq] = collatz(p) seq = p while %T if pmodulo(p, 2) p = p*3+1 else p = p/2 end seq = [seq p] if p==1 ns = length(seq) break end end endfunction prime = primes(20); [ns, seq] = ([],list()); for i = 1:length(prime) [ns(i), seq(i)] = collatz(prime(i)); end --> ns' ans = 2. 8. 6. 17. 15. 10. 13. 21. --> seq seq = (1) = [2,1] (2) = [3,10,5,16,8,4,2,1] (3) = [5,16,8,4,2,1] (4) = [7,22,11,34,17,52,26,13,40,20,10,5,16,8,4,2,1] (5) = [11,34,17,52,26,13,40,20,10,5,16,8,4,2,1] (6) = [13,40,20,10,5,16,8,4,2,1] (7) = [17,52,26,13,40,20,10,5,16,8,4,2,1] (8) = [19,58,29,88,44,22,11,34,17,52,26,13,40,20,10,5,16,8,4,2,1] Samuel -------------- next part -------------- An HTML attachment was scrubbed... URL: From sdr at durietz.se Sun Aug 15 16:06:46 2021 From: sdr at durietz.se (Stefan Du Rietz) Date: Sun, 15 Aug 2021 16:06:46 +0200 Subject: [Scilab-users] Loop query In-Reply-To: References: <5a2f2ee5-cfe5-81a0-1c56-baf88b9d89a9@durietz.se> <81ad0c70-90d4-7f67-2881-b27682e5fd52@durietz.se> Message-ID: One solution: // Run the last (largest): [ns, seq] = collatz(prime($)) // insert in new zeros vector: ns = [zeros(prime-1), ns] // insert seq in new zeros matrix: seq = [zeros(length(seq), length(ns)-1), seq]; for i = 1:length(prime)-1 // Run collatz to get the new ns: [nsi, seqi] = collatz(prime(i)); // insert in vector ns and matrix seq: ns(i) = nsi; seq(1:nsi, i) = seqi; end dispalay ns above seq: [ns; seq] Stefan On 2021-08-15 13:03, Lester Anderson wrote: > Hi Stefan, > > Thank you for clarifying the meaning of the error message. > > Lester > > On Sun, 15 Aug 2021 at 11:59, Stefan Du Rietz > wrote: > > Hello Lester, > the problem is that seq in each loop is a vector of increasing length! > > Stefan > > > On 2021-08-15 12:05, Lester Anderson wrote: > > Hi Stefan, > > > > I did try that before, but got an error - "Submatrix incorrectly > defined" > > > > Lester > > > > On Sun, 15 Aug 2021 at 10:56, Stefan Du Rietz > > >> wrote: > > > > > > > >? ? ?On 2021-08-15 09:00, Lester Anderson wrote: > >? ? ? > Hello, > >? ? ? > > >? ? ? > Basic query. I have a simple code that applies the Collatz > >? ? ?conjecture > >? ? ? > equation (3n+1) by running a function and then runs a loop > over the > >? ? ? > values stored in prime (the first 8 Prime numbers): > >? ? ? > > >? ? ? > clear > >? ? ? > > >? ? ? > exec('collatz.sci',-1); > >? ? ? > > >? ? ? > prime? =? primes(20); > >? ? ? > > >? ? ? > for? i? =? 1:length(prime) > >? ? ? >? ? ? [ns,? seq]=collatz(prime(i)) > >? ? ? > end > >? ? ? > > >? ? ? > As it stands, this just runs to the end (i=8) and the > value 19. > >? ? ?How can > >? ? ? > I get the code to write the results of each loop pass into the > >? ? ?variables > >? ? ? > ns and seq, such that each contains the results of the 8 > passes? > >? ? ? > > >? ? ? > Can no longer search?the forums online from the website. > >? ? ? > > >? ? ? > Thanks > >? ? ? > Lester > > > > > >? ? ?// Before the for loop: > >? ? ?ns = zeros(prime); > >? ? ?seq = ns; > > > >? ? ?// Changed for loop > >? ? ?for? i? =? 1:length(prime) > >? ? ? ? ? ?[ns(i),? seq(i)]=collatz(prime(i)) > >? ? ?end > > > >? ? ?Regards > >? ? ?Stefan > >? ? ?_______________________________________________ > >? ? ?users mailing list > > users at lists.scilab.org > > > > http://lists.scilab.org/mailman/listinfo/users > > >? ? ? > > > > > > > _______________________________________________ > > users mailing list > > users at lists.scilab.org > > http://lists.scilab.org/mailman/listinfo/users > > > > _______________________________________________ > users mailing list > users at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/users > > > > _______________________________________________ > users mailing list > users at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/users > From sdr at durietz.se Sun Aug 15 16:32:54 2021 From: sdr at durietz.se (Stefan Du Rietz) Date: Sun, 15 Aug 2021 16:32:54 +0200 Subject: [Scilab-users] Loop query In-Reply-To: References: <7f780665-afbc-0834-1628-66bec212d8f4@free.fr> Message-ID: <72d41893-72f0-e483-5810-aec8771914b7@durietz.se> On 2021-08-15 15:54, Samuel Gougeon wrote: > Le 15/08/2021 ? 11:28, Lester Anderson a ?crit?: >> Hello Samuel, >> >> The size of ns (number of steps) and seq (sequence of values) are >> variable depending on the integer input,?and this seems to?be one issue. > > For this reason, seq must be a list, leading to > > function [ns, seq] = collatz(p) > seq = p > while %T > if pmodulo(p, 2) > p = p*3+1 > else > p = p/2 > end > seq = [seq p] > if p==1 > ns = length(seq) > break > end > end > endfunction > > prime = primes(20); [ns, seq] = ([],list()); for i = 1:length(prime) > [ns(i), seq(i)] = collatz(prime(i)); > end --> ns' ans = 2. 8. 6. 17. 15. 10. 13. 21. --> seq seq = (1) = [2,1] > (2) = [3,10,5,16,8,4,2,1] (3) = [5,16,8,4,2,1] (4) = > [7,22,11,34,17,52,26,13,40,20,10,5,16,8,4,2,1] (5) = > [11,34,17,52,26,13,40,20,10,5,16,8,4,2,1] (6) = > [13,40,20,10,5,16,8,4,2,1] (7) = [17,52,26,13,40,20,10,5,16,8,4,2,1] (8) > = [19,58,29,88,44,22,11,34,17,52,26,13,40,20,10,5,16,8,4,2,1] > > Samuel > Of course, Samuel, I didn't realize that the length of seq was not monotonically increasing (which I had if I had looked at the displayed matrix ...)! Stefan From arctica1963 at gmail.com Sun Aug 15 18:15:15 2021 From: arctica1963 at gmail.com (Lester Anderson) Date: Sun, 15 Aug 2021 17:15:15 +0100 Subject: [Scilab-users] Loop query In-Reply-To: <72d41893-72f0-e483-5810-aec8771914b7@durietz.se> References: <7f780665-afbc-0834-1628-66bec212d8f4@free.fr> <72d41893-72f0-e483-5810-aec8771914b7@durietz.se> Message-ID: Thanks for all the guidance guys! Lester On Sun, 15 Aug 2021 at 15:33, Stefan Du Rietz wrote: > > > On 2021-08-15 15:54, Samuel Gougeon wrote: > > Le 15/08/2021 ? 11:28, Lester Anderson a ?crit : > >> Hello Samuel, > >> > >> The size of ns (number of steps) and seq (sequence of values) are > >> variable depending on the integer input, and this seems to be one issue. > > > > For this reason, seq must be a list, leading to > > > > function [ns, seq] = collatz(p) > > seq = p > > while %T > > if pmodulo(p, 2) > > p = p*3+1 > > else > > p = p/2 > > end > > seq = [seq p] > > if p==1 > > ns = length(seq) > > break > > end > > end > > endfunction > > > > prime = primes(20); [ns, seq] = ([],list()); for i = 1:length(prime) > > [ns(i), seq(i)] = collatz(prime(i)); > > end --> ns' ans = 2. 8. 6. 17. 15. 10. 13. 21. --> seq seq = (1) = [2,1] > > (2) = [3,10,5,16,8,4,2,1] (3) = [5,16,8,4,2,1] (4) = > > [7,22,11,34,17,52,26,13,40,20,10,5,16,8,4,2,1] (5) = > > [11,34,17,52,26,13,40,20,10,5,16,8,4,2,1] (6) = > > [13,40,20,10,5,16,8,4,2,1] (7) = [17,52,26,13,40,20,10,5,16,8,4,2,1] (8) > > = [19,58,29,88,44,22,11,34,17,52,26,13,40,20,10,5,16,8,4,2,1] > > > > Samuel > > > Of course, Samuel, I didn't realize that the length of seq was not > monotonically increasing (which I had if I had looked at the displayed > matrix ...)! > > Stefan > _______________________________________________ > users mailing list > users at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/users > -------------- next part -------------- An HTML attachment was scrubbed... URL: From arctica1963 at gmail.com Mon Aug 16 11:49:04 2021 From: arctica1963 at gmail.com (Lester Anderson) Date: Mon, 16 Aug 2021 10:49:04 +0100 Subject: [Scilab-users] Loop query In-Reply-To: References: <7f780665-afbc-0834-1628-66bec212d8f4@free.fr> Message-ID: Hi Samuel, Further to your method, is there a way to vectorise the list output based on the indices? One can access the elements as seq(1), seq(5) etc. I did look at list2vec(seq), but as documented this creates a single column vector. Thanks Lester On Sun, 15 Aug 2021 at 14:55, Samuel Gougeon wrote: > Le 15/08/2021 ? 11:28, Lester Anderson a ?crit : > > Hello Samuel, > > The size of ns (number of steps) and seq (sequence of values) are variable > depending on the integer input, and this seems to be one issue. > > For this reason, seq must be a list, leading to > > function [ns, seq] = collatz(p) > seq = p > while %T > if pmodulo(p, 2) > p = p*3+1 > else > p = p/2 > end > seq = [seq p] > if p==1 > ns = length(seq) > break > end > endendfunction > prime = primes(20);[ns, seq] = ([], list()); > for i = 1:length(prime) > [ns(i), seq(i)] = collatz(prime(i));end > --> ns' > ans = > > 2. 8. 6. 17. 15. 10. 13. 21. > > --> seq > seq = > > (1) = [2,1] > (2) = [3,10,5,16,8,4,2,1] > (3) = [5,16,8,4,2,1] > (4) = [7,22,11,34,17,52,26,13,40,20,10,5,16,8,4,2,1] > (5) = [11,34,17,52,26,13,40,20,10,5,16,8,4,2,1] > (6) = [13,40,20,10,5,16,8,4,2,1] > (7) = [17,52,26,13,40,20,10,5,16,8,4,2,1] > (8) = [19,58,29,88,44,22,11,34,17,52,26,13,40,20,10,5,16,8,4,2,1] > > > Samuel > > > _______________________________________________ > users mailing list > users at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/users > -------------- next part -------------- An HTML attachment was scrubbed... URL: From arctica1963 at gmail.com Mon Aug 16 14:12:07 2021 From: arctica1963 at gmail.com (Lester Anderson) Date: Mon, 16 Aug 2021 13:12:07 +0100 Subject: [Scilab-users] Loop query In-Reply-To: References: <7f780665-afbc-0834-1628-66bec212d8f4@free.fr> Message-ID: This is the simplest option, based on primes(35): [p1,p2,p3,p4,p5,p6,p7,p8,p9,p10,p11]=seq([1:$]); Extract values based on the indices in the seq list. On Mon, 16 Aug 2021 at 10:49, Lester Anderson wrote: > Hi Samuel, > > Further to your method, is there a way to vectorise the list output based > on the indices? > > One can access the elements as seq(1), seq(5) etc. I did look at > list2vec(seq), but as documented this creates a single column vector. > > Thanks > > Lester > > On Sun, 15 Aug 2021 at 14:55, Samuel Gougeon wrote: > >> Le 15/08/2021 ? 11:28, Lester Anderson a ?crit : >> >> Hello Samuel, >> >> The size of ns (number of steps) and seq (sequence of values) are >> variable depending on the integer input, and this seems to be one issue. >> >> For this reason, seq must be a list, leading to >> >> function [ns, seq] = collatz(p) >> seq = p >> while %T >> if pmodulo(p, 2) >> p = p*3+1 >> else >> p = p/2 >> end >> seq = [seq p] >> if p==1 >> ns = length(seq) >> break >> end >> endendfunction >> prime = primes(20);[ns, seq] = ([], list()); >> for i = 1:length(prime) >> [ns(i), seq(i)] = collatz(prime(i));end >> --> ns' >> ans = >> >> 2. 8. 6. 17. 15. 10. 13. 21. >> >> --> seq >> seq = >> >> (1) = [2,1] >> (2) = [3,10,5,16,8,4,2,1] >> (3) = [5,16,8,4,2,1] >> (4) = [7,22,11,34,17,52,26,13,40,20,10,5,16,8,4,2,1] >> (5) = [11,34,17,52,26,13,40,20,10,5,16,8,4,2,1] >> (6) = [13,40,20,10,5,16,8,4,2,1] >> (7) = [17,52,26,13,40,20,10,5,16,8,4,2,1] >> (8) = [19,58,29,88,44,22,11,34,17,52,26,13,40,20,10,5,16,8,4,2,1] >> >> >> Samuel >> >> >> _______________________________________________ >> users mailing list >> users at lists.scilab.org >> http://lists.scilab.org/mailman/listinfo/users >> > -------------- next part -------------- An HTML attachment was scrubbed... URL: From kopac.jakub at gmail.com Mon Aug 16 18:00:04 2021 From: kopac.jakub at gmail.com (Jakub Kopac) Date: Mon, 16 Aug 2021 18:00:04 +0200 Subject: [Scilab-users] uiDisplayTree - close figure Message-ID: Dear all, I can not find a command, which will close a figure created by uiDisplayTree It looks that close and delete can not see the figure. Is there any solution, which I am missing? Thank you. Best Regards J.K. -------------- next part -------------- An HTML attachment was scrubbed... URL: From ray.finucane at gmail.com Wed Aug 25 01:07:30 2021 From: ray.finucane at gmail.com (rgf) Date: Tue, 24 Aug 2021 16:07:30 -0700 Subject: [Scilab-users] how to get scilab running on mac mini Message-ID: <864E98BB-50F5-4150-8A43-BF2A8604BFCB@gmail.com> I have been running Scilab for 10 or 15 years on generations of Apple platforms, encountering difficulties with Java at every stage. I can?t get Version 6.1.1 to run on mac mini, and the user lists are down. Is any help extant or pending? ????????????????... Ray Finucane ray.finucane at gmail.com 925.724.4040 From murusov at googlemail.com Wed Aug 25 12:27:18 2021 From: murusov at googlemail.com (Mikhail Urusov) Date: Wed, 25 Aug 2021 12:27:18 +0200 Subject: [Scilab-users] how to get scilab running on mac mini In-Reply-To: <864E98BB-50F5-4150-8A43-BF2A8604BFCB@gmail.com> References: <864E98BB-50F5-4150-8A43-BF2A8604BFCB@gmail.com> Message-ID: I have the same problem. Posted it yesterday with a thorough explanation and screenshots. But it does not seem even to be posted (200 kbytes due to screenshots). I am wondering if we can get any help? Kind regards, Mikhail Urusov Am Mi., 25. Aug. 2021 um 01:08 Uhr schrieb rgf : > I have been running Scilab for 10 or 15 years on generations of Apple > platforms, encountering difficulties with Java at every stage. I can?t get > Version 6.1.1 to run on mac mini, and the user lists are down. Is any help > extant or pending? > ????????????????... > > Ray Finucane > ray.finucane at gmail.com > 925.724.4040 > > > > > _______________________________________________ > users mailing list > users at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/users > -------------- next part -------------- An HTML attachment was scrubbed... URL: From fmiyara at fceia.unr.edu.ar Thu Aug 26 08:15:35 2021 From: fmiyara at fceia.unr.edu.ar (Federico Miyara) Date: Thu, 26 Aug 2021 03:15:35 -0300 Subject: [Scilab-users] problem with convol() Message-ID: <05e63005-6199-b609-79d7-07bcb6ae1d95@fceia.unr.edu.ar> Dear All, The function convol() used to compute the discrete convolution between two signals yields always a row vector, regardless of the orientation of the input vectors: --> a = [1 2 3]' ?a? = ?? 1. ?? 2. ?? 3. --> b = [4 5]' ?b? = ?? 4. ?? 5. --> c = convol(a, b) ?c? = ? 4.?? 13.?? 22.?? 15. If both input arguments have the same orientation, I think it should yield the same orientation. Indeed, this is how conv() behaves: --> d = conv(a, b) ?d? = ?? 4. ?? 13. ?? 22. ?? 15. If both arguments have different orientation, conv() keeps the orientation of the first argument. Is there a reason why both functions behave differently? Regards, Federico Miyara -- El software de antivirus Avast ha analizado este correo electr?nico en busca de virus. https://www.avast.com/antivirus -------------- next part -------------- An HTML attachment was scrubbed... URL: From fmiyara at fceia.unr.edu.ar Sun Aug 29 05:40:22 2021 From: fmiyara at fceia.unr.edu.ar (Federico Miyara) Date: Sun, 29 Aug 2021 00:40:22 -0300 Subject: [Scilab-users] disable grid in 3d plot Message-ID: <302b7ecd-d85d-66ab-7263-72f6b52359ac@fceia.unr.edu.ar> Dear All, Is there any way to disable the grid on a surface generated using plot3d() or similar? Sometimes it is useful, but when the grid where the data to plot are defined is too tight the black lines on the surface are way too invasive and the general appearance is almost black. I would expect a smooth surface, something like Sgrayplot() but in 3d. Regards, Federico Miyara -- El software de antivirus Avast ha analizado este correo electr?nico en busca de virus. https://www.avast.com/antivirus -------------- next part -------------- An HTML attachment was scrubbed... URL: From denis.crete at thalesgroup.com Sun Aug 29 23:22:37 2021 From: denis.crete at thalesgroup.com (CRETE Denis) Date: Sun, 29 Aug 2021 21:22:37 +0000 Subject: [Scilab-users] disable grid in 3d plot In-Reply-To: <302b7ecd-d85d-66ab-7263-72f6b52359ac@fceia.unr.edu.ar> References: <302b7ecd-d85d-66ab-7263-72f6b52359ac@fceia.unr.edu.ar> Message-ID: Hello, Did you try the option of plot3d ?flag=[mode, type, box]? with mode <0 ? HTH Denis De : users De la part de Federico Miyara Envoy? : dimanche 29 ao?t 2021 05:40 ? : Users mailing list for Scilab Objet : [Scilab-users] disable grid in 3d plot Dear All, Is there any way to disable the grid on a surface generated using plot3d() or similar? Sometimes it is useful, but when the grid where the data to plot are defined is too tight the black lines on the surface are way too invasive and the general appearance is almost black. I would expect a smooth surface, something like Sgrayplot() but in 3d. Regards, Federico Miyara [https://ipmcdn.avast.com/images/icons/icon-envelope-tick-round-orange-animated-no-repeat-v1.gif] Libre de virus. www.avast.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From stephane.mottelet at utc.fr Mon Aug 30 09:54:03 2021 From: stephane.mottelet at utc.fr (=?UTF-8?Q?St=c3=a9phane_Mottelet?=) Date: Mon, 30 Aug 2021 09:54:03 +0200 Subject: [Scilab-users] how to get scilab running on mac mini In-Reply-To: References: <864E98BB-50F5-4150-8A43-BF2A8604BFCB@gmail.com> Message-ID: <6b539e6f-f885-544b-4ee9-140b4a5e3a48@utc.fr> Hi, Please precise the version of MacOS you are using. The easiest way to fix problems is to uninstall all existing Java Virtual machines and let Scilab install? the right one at first startup. Please remove any folder in /Library/Java/JavaVirtualMachines/ and /Library/Internet\ Plug-Ins/JavaAppletPlugin.plugin/ and restart Scilab. S. Le 25/08/2021 ? 12:27, Mikhail Urusov a ?crit?: > I have the same problem. > Posted it yesterday with a thorough explanation and screenshots. > But it does not seem even to be posted (200 kbytes due to screenshots). > I am wondering if we can get any help? > Kind regards, > Mikhail Urusov > > Am Mi., 25. Aug. 2021 um 01:08?Uhr schrieb rgf >: > > I have been running Scilab for 10 or 15 years on generations of > Apple platforms, encountering difficulties with Java at every > stage.? I can?t get Version 6.1.1 to run on mac mini, and the user > lists are down. Is any help extant or pending? > ????????????????... > > Ray Finucane > ray.finucane at gmail.com > 925.724.4040 > > > > > _______________________________________________ > users mailing list > users at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/users > > > > _______________________________________________ > users mailing list > users at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/users -- St?phane Mottelet Ing?nieur de recherche EA 4297 Transformations Int?gr?es de la Mati?re Renouvelable D?partement G?nie des Proc?d?s Industriels Sorbonne Universit?s - Universit? de Technologie de Compi?gne CS 60319, 60203 Compi?gne cedex Tel : +33(0)344234688 http://www.utc.fr/~mottelet -------------- next part -------------- An HTML attachment was scrubbed... URL: From sgougeon at free.fr Mon Aug 30 10:05:35 2021 From: sgougeon at free.fr (Samuel Gougeon) Date: Mon, 30 Aug 2021 10:05:35 +0200 Subject: [Scilab-users] disable grid in 3d plot In-Reply-To: <302b7ecd-d85d-66ab-7263-72f6b52359ac@fceia.unr.edu.ar> References: <302b7ecd-d85d-66ab-7263-72f6b52359ac@fceia.unr.edu.ar> Message-ID: Le 29/08/2021 ? 05:40, Federico Miyara a ?crit?: > > Dear All, > > Is there any way to disable the grid on a surface generated using > plot3d() or similar? > > Sometimes it is useful, but when the grid where the data to plot are > defined is too tight the black lines on the surface are way too > invasive and the general appearance is almost black. I would expect a > smooth surface, something like Sgrayplot() but in 3d. Setting .thickness=0 is likely the simplest way to do it. Using the first plot3d() example: // simple plot using z=f(x,y) t=[0:0.3:2*%pi]'; z=sin(t)*cos(t'); plot3d(t,t,z) gce().thickness = 0; Samuel -------------- next part -------------- An HTML attachment was scrubbed... URL: From stephane.mottelet at utc.fr Tue Aug 31 08:34:52 2021 From: stephane.mottelet at utc.fr (=?UTF-8?Q?St=c3=a9phane_Mottelet?=) Date: Tue, 31 Aug 2021 08:34:52 +0200 Subject: [Scilab-users] how to get scilab running on mac mini In-Reply-To: References: <864E98BB-50F5-4150-8A43-BF2A8604BFCB@gmail.com> <6b539e6f-f885-544b-4ee9-140b4a5e3a48@utc.fr> Message-ID: Hi, The problem is in the path of your User directory (Spaces and parentheses). The download script is unfortunately broken by this. It can be circumvented by the following : 1-dowload the 30/08/2021 macOS version 2-manually download and install the Jvm from : https://github.com/AdoptOpenJDK/openjdk8-binaries/releases/download/jdk8u275-b01/OpenJDK8U-jre_x64_mac_hotspot_8u275b01.pkg I cannot ensure that you will have no other problems with your particular User directory path, so please report any further problem. S. Le 30/08/2021 ? 21:46, Mikhail Urusov a ?crit?: > Hi St?phane, > > Many thanks for your answer! > > I upgraded from MacOS Catalina to MacOS Big Sur, and Scilab did not > work any longer. > > Then I downloaded and installed the most recent version: > scilab-6.1.1-x86.64.dmg (Build date 16.07.2021). > Running Scilab suggests installing Java 8. > Letting?Scilab to install the right Java leads to a failure (I am > attaching a screenshot). > > In fact, after that I did several tries myself (installed two > different variants of Java 8 and Java 11) but Scilab never worked. > Funnily, Javas were stored in?/Library/Java/JavaVirtualMachines/ only > (I did not see any trace of Javas in /Library/Internet\ Plug-Ins/). > In the end, I removed all folders in /Library/Java/JavaVirtualMachines/. > > Thanks in advance if you see a solution. > > Best regards, > Mikhail > > > > Am Mo., 30. Aug. 2021 um 10:04?Uhr schrieb St?phane Mottelet > >: > > Hi, > > Please precise the version of MacOS you are using. The easiest way > to fix problems is to uninstall all existing Java Virtual machines > and let Scilab install? the right one at first startup. Please > remove any folder in /Library/Java/JavaVirtualMachines/ and > /Library/Internet\ Plug-Ins/JavaAppletPlugin.plugin/ and restart > Scilab. > > S. > > Le 25/08/2021 ? 12:27, Mikhail Urusov a ?crit?: >> I have the same problem. >> Posted it yesterday with a thorough explanation and screenshots. >> But it does not seem even to be posted (200 kbytes due to >> screenshots). >> I am wondering if we can get any help? >> Kind regards, >> Mikhail Urusov >> >> Am Mi., 25. Aug. 2021 um 01:08?Uhr schrieb rgf >> >: >> >> I have been running Scilab for 10 or 15 years on generations >> of Apple platforms, encountering difficulties with Java at >> every stage.? I can?t get Version 6.1.1 to run on mac mini, >> and the user lists are down. Is any help extant or pending? >> ????????????????... >> >> Ray Finucane >> ray.finucane at gmail.com >> 925.724.4040 >> >> >> >> >> _______________________________________________ >> users mailing list >> users at lists.scilab.org >> http://lists.scilab.org/mailman/listinfo/users >> >> >> >> _______________________________________________ >> users mailing list >> users at lists.scilab.org >> http://lists.scilab.org/mailman/listinfo/users > > -- > St?phane Mottelet > Ing?nieur de recherche > EA 4297 Transformations Int?gr?es de la Mati?re Renouvelable > D?partement G?nie des Proc?d?s Industriels > Sorbonne Universit?s - Universit? de Technologie de Compi?gne > CS 60319, 60203 Compi?gne cedex > Tel : +33(0)344234688 > http://www.utc.fr/~mottelet > > _______________________________________________ > users mailing list > users at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/users > > -- St?phane Mottelet Ing?nieur de recherche EA 4297 Transformations Int?gr?es de la Mati?re Renouvelable D?partement G?nie des Proc?d?s Industriels Sorbonne Universit?s - Universit? de Technologie de Compi?gne CS 60319, 60203 Compi?gne cedex Tel : +33(0)344234688 http://www.utc.fr/~mottelet -------------- next part -------------- An HTML attachment was scrubbed... URL: From stephane.mottelet at utc.fr Tue Aug 31 08:42:03 2021 From: stephane.mottelet at utc.fr (=?UTF-8?Q?St=c3=a9phane_Mottelet?=) Date: Tue, 31 Aug 2021 08:42:03 +0200 Subject: [Scilab-users] how to get scilab running on mac mini In-Reply-To: References: <864E98BB-50F5-4150-8A43-BF2A8604BFCB@gmail.com> <6b539e6f-f885-544b-4ee9-140b4a5e3a48@utc.fr> Message-ID: <73158531-ffaa-8629-c976-2cdf0cba288e@utc.fr> In fact the standard location of your "Downloads" folder seems to be artificially changed by Dropbox (to a name with parenthesis and spaces)? that's the reason why it fails. S. Le 31/08/2021 ? 08:34, St?phane Mottelet a ?crit?: > > Hi, > > The problem is in the path of your User directory (Spaces and > parentheses). The download script is unfortunately broken by this. It > can be circumvented by the following : > > 1-dowload the 30/08/2021 macOS version > 2-manually download and install the Jvm from : > > https://github.com/AdoptOpenJDK/openjdk8-binaries/releases/download/jdk8u275-b01/OpenJDK8U-jre_x64_mac_hotspot_8u275b01.pkg > > I cannot ensure that you will have no other problems with your > particular User directory path, so please report any further problem. > > S. > > Le 30/08/2021 ? 21:46, Mikhail Urusov a ?crit?: >> Hi St?phane, >> >> Many thanks for your answer! >> >> I upgraded from MacOS Catalina to MacOS Big Sur, and Scilab did not >> work any longer. >> >> Then I downloaded and installed the most recent version: >> scilab-6.1.1-x86.64.dmg (Build date 16.07.2021). >> Running Scilab suggests installing Java 8. >> Letting?Scilab to install the right Java leads to a failure (I am >> attaching a screenshot). >> >> In fact, after that I did several tries myself (installed two >> different variants of Java 8 and Java 11) but Scilab never worked. >> Funnily, Javas were stored in?/Library/Java/JavaVirtualMachines/ only >> (I did not see any trace of Javas in /Library/Internet\ Plug-Ins/). >> In the end, I removed all folders in /Library/Java/JavaVirtualMachines/. >> >> Thanks in advance if you see a solution. >> >> Best regards, >> Mikhail >> >> >> >> Am Mo., 30. Aug. 2021 um 10:04?Uhr schrieb St?phane Mottelet >> >: >> >> Hi, >> >> Please precise the version of MacOS you are using. The easiest >> way to fix problems is to uninstall all existing Java Virtual >> machines and let Scilab install the right one at first startup. >> Please remove any folder in /Library/Java/JavaVirtualMachines/ >> and /Library/Internet\ Plug-Ins/JavaAppletPlugin.plugin/ and >> restart Scilab. >> >> S. >> >> Le 25/08/2021 ? 12:27, Mikhail Urusov a ?crit?: >>> I have the same problem. >>> Posted it yesterday with a thorough explanation and screenshots. >>> But it does not seem even to be posted (200 kbytes due to >>> screenshots). >>> I am wondering if we can get any help? >>> Kind regards, >>> Mikhail Urusov >>> >>> Am Mi., 25. Aug. 2021 um 01:08?Uhr schrieb rgf >>> >: >>> >>> I have been running Scilab for 10 or 15 years on generations >>> of Apple platforms, encountering difficulties with Java at >>> every stage.? I can?t get Version 6.1.1 to run on mac mini, >>> and the user lists are down. Is any help extant or pending? >>> ????????????????... >>> >>> Ray Finucane >>> ray.finucane at gmail.com >>> 925.724.4040 >>> >>> >>> >>> >>> _______________________________________________ >>> users mailing list >>> users at lists.scilab.org >>> http://lists.scilab.org/mailman/listinfo/users >>> >>> >>> >>> _______________________________________________ >>> users mailing list >>> users at lists.scilab.org >>> http://lists.scilab.org/mailman/listinfo/users >> >> -- >> St?phane Mottelet >> Ing?nieur de recherche >> EA 4297 Transformations Int?gr?es de la Mati?re Renouvelable >> D?partement G?nie des Proc?d?s Industriels >> Sorbonne Universit?s - Universit? de Technologie de Compi?gne >> CS 60319, 60203 Compi?gne cedex >> Tel : +33(0)344234688 >> http://www.utc.fr/~mottelet >> >> _______________________________________________ >> users mailing list >> users at lists.scilab.org >> http://lists.scilab.org/mailman/listinfo/users >> >> > -- > St?phane Mottelet > Ing?nieur de recherche > EA 4297 Transformations Int?gr?es de la Mati?re Renouvelable > D?partement G?nie des Proc?d?s Industriels > Sorbonne Universit?s - Universit? de Technologie de Compi?gne > CS 60319, 60203 Compi?gne cedex > Tel : +33(0)344234688 > http://www.utc.fr/~mottelet > > _______________________________________________ > users mailing list > users at lists.scilab.org > https://antispam.utc.fr/proxy/v3?i=SXVFem5DOGVpUU1rNjdmQuxbAYzjRE578NJDXO0bRW0&r=bWt1djZ5QzcyUms5R1Nzas4Pz4hn3S9_MEd_XcyeYzHsyKCVRtQ67N89rCt3q6Xy&f=Q3ZQNmU2SnpsRFlRbUF3dm35RmWaJxuoBVu42ymMGAK3JGu3n6Y8Xa7RPvcRg_db&u=http%3A//lists.scilab.org/mailman/listinfo/users&k=syJL -- St?phane Mottelet Ing?nieur de recherche EA 4297 Transformations Int?gr?es de la Mati?re Renouvelable D?partement G?nie des Proc?d?s Industriels Sorbonne Universit?s - Universit? de Technologie de Compi?gne CS 60319, 60203 Compi?gne cedex Tel : +33(0)344234688 http://www.utc.fr/~mottelet -------------- next part -------------- An HTML attachment was scrubbed... URL: From murusov at googlemail.com Tue Aug 31 14:30:43 2021 From: murusov at googlemail.com (Mikhail Urusov) Date: Tue, 31 Aug 2021 14:30:43 +0200 Subject: [Scilab-users] how to get scilab running on mac mini In-Reply-To: References: <864E98BB-50F5-4150-8A43-BF2A8604BFCB@gmail.com> <6b539e6f-f885-544b-4ee9-140b4a5e3a48@utc.fr> Message-ID: Hi St?phane, Many thanks, it works! Best regards, Mikhail Am Di., 31. Aug. 2021 um 08:35 Uhr schrieb St?phane Mottelet < stephane.mottelet at utc.fr>: > Hi, > > The problem is in the path of your User directory (Spaces and > parentheses). The download script is unfortunately broken by this. It can > be circumvented by the following : > > 1-dowload the 30/08/2021 macOS version > 2-manually download and install the Jvm from : > > > https://github.com/AdoptOpenJDK/openjdk8-binaries/releases/download/jdk8u275-b01/OpenJDK8U-jre_x64_mac_hotspot_8u275b01.pkg > > I cannot ensure that you will have no other problems with your particular > User directory path, so please report any further problem. > > S. > Le 30/08/2021 ? 21:46, Mikhail Urusov a ?crit : > > Hi St?phane, > > Many thanks for your answer! > > I upgraded from MacOS Catalina to MacOS Big Sur, and Scilab did not work > any longer. > > Then I downloaded and installed the most recent version: > scilab-6.1.1-x86.64.dmg (Build date 16.07.2021). > Running Scilab suggests installing Java 8. > Letting Scilab to install the right Java leads to a failure (I am > attaching a screenshot). > > In fact, after that I did several tries myself (installed two different > variants of Java 8 and Java 11) but Scilab never worked. > Funnily, Javas were stored in /Library/Java/JavaVirtualMachines/ only (I > did not see any trace of Javas in /Library/Internet\ Plug-Ins/). > In the end, I removed all folders in /Library/Java/JavaVirtualMachines/. > > Thanks in advance if you see a solution. > > Best regards, > Mikhail > > > > Am Mo., 30. Aug. 2021 um 10:04 Uhr schrieb St?phane Mottelet < > stephane.mottelet at utc.fr>: > >> Hi, >> >> Please precise the version of MacOS you are using. The easiest way to fix >> problems is to uninstall all existing Java Virtual machines and let Scilab >> install the right one at first startup. Please remove any folder in >> /Library/Java/JavaVirtualMachines/ and /Library/Internet\ >> Plug-Ins/JavaAppletPlugin.plugin/ and restart Scilab. >> >> S. >> Le 25/08/2021 ? 12:27, Mikhail Urusov a ?crit : >> >> I have the same problem. >> Posted it yesterday with a thorough explanation and screenshots. >> But it does not seem even to be posted (200 kbytes due to screenshots). >> I am wondering if we can get any help? >> Kind regards, >> Mikhail Urusov >> >> Am Mi., 25. Aug. 2021 um 01:08 Uhr schrieb rgf : >> >>> I have been running Scilab for 10 or 15 years on generations of Apple >>> platforms, encountering difficulties with Java at every stage. I can?t get >>> Version 6.1.1 to run on mac mini, and the user lists are down. Is any help >>> extant or pending? >>> ????????????????... >>> >>> Ray Finucane >>> ray.finucane at gmail.com >>> 925.724.4040 >>> >>> >>> >>> >>> _______________________________________________ >>> users mailing list >>> users at lists.scilab.org >>> http://lists.scilab.org/mailman/listinfo/users >>> >>> >> >> _______________________________________________ >> users mailing listusers at lists.scilab.orghttp://lists.scilab.org/mailman/listinfo/users >> >> -- >> St?phane Mottelet >> Ing?nieur de recherche >> EA 4297 Transformations Int?gr?es de la Mati?re Renouvelable >> D?partement G?nie des Proc?d?s Industriels >> Sorbonne Universit?s - Universit? de Technologie de Compi?gne >> CS 60319, 60203 Compi?gne cedex >> Tel : +33(0)344234688http://www.utc.fr/~mottelet >> >> _______________________________________________ >> users mailing list >> users at lists.scilab.org >> http://lists.scilab.org/mailman/listinfo/users >> >> > -- > St?phane Mottelet > Ing?nieur de recherche > EA 4297 Transformations Int?gr?es de la Mati?re Renouvelable > D?partement G?nie des Proc?d?s Industriels > Sorbonne Universit?s - Universit? de Technologie de Compi?gne > CS 60319, 60203 Compi?gne cedex > Tel : +33(0)344234688http://www.utc.fr/~mottelet > > _______________________________________________ > users mailing list > users at lists.scilab.org > http://lists.scilab.org/mailman/listinfo/users > -------------- next part -------------- An HTML attachment was scrubbed... URL: