Re: [Scilab-users] How to define the Y Range of plot

2020-08-08 Thread Stefan Du Rietz
You don't *need* it, of course ;-) cafix is the handle of your axes from plot() which you got with gca(). You can then set the properties of it with the dot method. Stefan On 2020-08-08 23:33, Stefan Du Rietz wrote: Hello Fukashiimo, you don't nedd the last line! All is already done by the

Re: [Scilab-users] How to define the Y Range of plot

2020-08-08 Thread Stefan Du Rietz
Hello Fukashiimo, you don't nedd the last line! All is already done by the previous lines. Stefan On 2020-08-08 23:25, Fukashiimo wrote: Hello, Mr. Stefan, Thanks. plot (X,Y); cafix = gca(); cafix.tight_limits="on"; cafix.auto_scale="off"; cafix.data_bounds = [-0.5,-2;0.5,2];

Re: [Scilab-users] How to define the Y Range of plot

2020-08-08 Thread Fukashiimo
Hello, Mr. Stefan, Thanks. plot (X,Y); cafix = gca(); cafix.tight_limits="on"; cafix.auto_scale="off"; cafix.data_bounds = [-0.5,-2;0.5,2]; set(gca(),"data_bounds", cafix.data_bounds); -- Sent from: http://mailinglists.scilab.org/Scilab-users-Mailing-Lists-Archives-f2602246.html

Re: [Scilab-users] How to define the Y Range of plot

2020-08-08 Thread Stefan Du Rietz
That is if you want to change the data_ bounds each time (for very different data). I thought that was what you wanted. Otherwise you could use it only once after the first plot, or even before if you have no other figure open. (thanks Samuel!) On 2020-08-08 15:08, Stefan Du Rietz wrote:

Re: [Scilab-users] How to define the Y Range of plot

2020-08-08 Thread Stefan Du Rietz
Hello, not before but after! Stefan On 2020-08-08 15:03, Fukashiimo wrote: Hello, Mr. Stefan, Thanks. Should we put following codes before each plot command? cafix = gca(); cafix.tight_limits="on"; cafix.auto_scale="off"; cafix.data_bounds = [-0.5,-2;0.5,2]; -- Sent from:

Re: [Scilab-users] How to define the Y Range of plot

2020-08-08 Thread Fukashiimo
Hello, Mr. Stefan, Thanks. Should we put following codes before each plot command? cafix = gca(); cafix.tight_limits="on"; cafix.auto_scale="off"; cafix.data_bounds = [-0.5,-2;0.5,2]; -- Sent from: http://mailinglists.scilab.org/Scilab-users-Mailing-Lists-Archives-f2602246.html

Re: [Scilab-users] How to define the Y Range of plot

2020-08-08 Thread Stefan Du Rietz
Sorry for a wrong letter in my previous mail! Hello Fukashiimo, 1. get the handle of your axes: --> cafix = gca(); 2. set the properties: --> cafix.tight_limits="on"; --> cafix.auto_scale="off"; --> cafix.data_bounds = [-0.5,-2;0.5,2]; Regards Stefan On 2020-08-08 12:15, Fukashiimo wrote:

Re: [Scilab-users] How to define the Y Range of plot

2020-08-08 Thread Fukashiimo
Hello, Mr. Stefan, Thanks. Could you please tell me how to se it? I tried the following code. My intention is to define X: from -0.5 to +0,5 and Y from -2 to +2. However, plot command didn't work as I expected. Any idea? cafix.data_bounds = [-0.5,-2;0.5,2]; cafix.tight_limits="on";

[Scilab-users] How to define the Y Range of plot

2020-08-08 Thread Fukashiimo
Hello, I would like to define the Y Range of plot. Could you tell me the Scilibe code to realize this. If I use the plot command, Y range is automatically set by Scilab. I would like to set the Y range, e.g. min -10 to Max 20. Thanks for your advise -- Sent from:

Re: [Scilab-users] How to define the Y Range of plot

2020-08-08 Thread Stefan Du Rietz
Hello, --> help data_bounds Regards Stefan On 2020-08-08 10:56, Fukashiimo wrote: Hello, I would like to define the Y Range of plot. Could you tell me the Scilibe code to realize this. If I use the plot command, Y range is automatically set by Scilab. I would like to set the Y range, e.g.

[Scilab-users] How to define the Y Range of plot

2020-08-08 Thread Fukashiimo
Hello, I would like to define the Y Range of plot. Could you tell me the Scilibe code to realize this. If I use the plot command, Y range is automatically set by Scilab. I would like to set the Y range, e.g. min -10 to Max 20. Thanks for your advise -- Sent from: