Re: [Scilab-users] Plotting on left and right y axes

2023-04-30 Thread Samuel Enibe
;right"; h2.children(1).children(1).thickness=2; ylabel('relative turbine performance','fontsize',4); Date: Fri, 28 Apr 2023 17:32:02 +0100 From: Samuel Enibe mailto:samuel.en...@unn.edu.ng>> To: Users mailing list for Scilab mailto:users@lists.scilab.org>> Subj

[Scilab-users] Plotting on left and right y axes

2023-04-29 Thread Heinz Nabielek
Friends: here is one working example Heinz B=read('155508.txt',155508,2); v=B(:,2); plot(35,.2,'k+'); histplot(-0.5:30.5,v,style=2); xgrid(); h1=gca();h1.font_size=4; xlabel('wind speed (m/s)','fontsize',4); ylabel('wind speed probability ()','fontsize',4); title('Power Generation is

Re: [Scilab-users] Plotting on left and right y axes

2023-04-28 Thread Samuel Gougeon
Hello, You may have a look to examples in --> help plot_multiscaled https://help.scilab.org/docs/2023.0.0/en_US/plot_multiscaled.html##L280 Best regards Le 28/04/2023 à 18:32, Samuel Enibe a écrit : How can I plot two graphs on the same window, with graph 1 on the left y axis, and graph 2

[Scilab-users] Plotting on left and right y axes

2023-04-28 Thread Samuel Enibe
How can I plot two graphs on the same window, with graph 1 on the left y axis, and graph 2 on the right y axis. For example, x = 1:4; y1 = x.^2; y2 = x.^3; plot(x, y1);// y1 on left y axis plot (x. y2);// y2 on right y axis Your assistance will be greatly appreciated. Samuel Enibe This