Re: [Scilab-users] Filled polygons from polylines

2021-04-14 Thread arctica1963
Many thanks Antoine Lester -- Sent from: http://mailinglists.scilab.org/Scilab-users-Mailing-Lists-Archives-f2602246.html ___ users mailing list users@lists.scilab.org http://lists.scilab.org/mailman/listinfo/users

[Scilab-users] Scilab and newer Mac M1 machines

2021-04-14 Thread Stéphane Mottelet
Hi all, I have updated the Scilab for macOS page with new instructions for the situation where Scilab is the very first application compiled for Intel architecture run on a Mac M1. To successfully launch Scilab you have to manually install the Apple Rosetta 2 binary traduction engine from the

Re: [Scilab-users] Filled polygons from polylines

2021-04-14 Thread Antoine Monmayrant
On 14/04/2021 14:21, arctica1963 wrote: Sorry, I did not make it clear. Instead of the following which updates the existing graphic to generate the final plot (y1 to y10); plot(-[t(n) t], [0 y1]) plot(-[t(n) t], [0 y2]) plot(-[t(n) t], [0 y3]) plot(-[t(n) t], [0 y4]) plot(-[t(n) t], [0 y5])

Re: [Scilab-users] Filled polygons from polylines

2021-04-14 Thread arctica1963
Sorry, I did not make it clear. Instead of the following which updates the existing graphic to generate the final plot (y1 to y10); plot(-[t(n) t], [0 y1]) plot(-[t(n) t], [0 y2]) plot(-[t(n) t], [0 y3]) plot(-[t(n) t], [0 y4]) plot(-[t(n) t], [0 y5]) plot(-[t(n) t], [0 y6]) plot(-[t(n) t], [0

Re: [Scilab-users] Filled polygons from polylines

2021-04-14 Thread Antoine Monmayrant
Hello Lester, On 14/04/2021 12:17, arctica1963 wrote: Is there a way to do a loop over the curves to save multiple plots What do you want to do exactly? Do you want to get several image files with only part of the lines or surfaces visible? Because you can do that by playing with the

Re: [Scilab-users] Filled polygons from polylines

2021-04-14 Thread arctica1963
Truncated plot at t=97 -- Sent from: http://mailinglists.scilab.org/Scilab-users-Mailing-Lists-Archives-f2602246.html ___ users mailing list users@lists.scilab.org

Re: [Scilab-users] Filled polygons from polylines

2021-04-14 Thread arctica1963
Hi Samuel, Sorted out the code and it works.Had to manually set the filled areas upper time limit (t=97) (plot(-[97 t], [0 y1]) ). Set two graphic handles for upper and lower plot. Just random colours to test! Is there a way to do a loop over the curves to save multiple plots Thanks Lester