Re: [Scilab-users] Title positioning on log-scale plots

2015-11-25 Thread Rafael Guerra
-Original Message- From: users [mailto:users-boun...@lists.scilab.org] On Behalf Of sgoug...@free.fr Sent: Wednesday, November 25, 2015 4:40 PM To: Users mailing list for Scilab Subject: Re: [Scilab-users] Title positioning on log-scale plots >Does anybody know how to [ x,y ]-posit

Re: [Scilab-users] Title positioning on log-scale plots

2015-11-25 Thread sgougeon
>Does anybody know how to [ x,y ]-position titles on log-scale plots? After some trials without searching for the involved bugged piece of code, it comes that the title is wrongly displayed at X = 10*( gca().title.position(1) - 1) So, to display it from X=1 on your first graph, you must set g

Re: [Scilab-users] Title positioning on log-scale plots

2015-11-25 Thread sgougeon
Hi, >Does anybody know how to [ x,y ]-position titles on log-scale plots? This is a regression since Scilab 5.5.0, as well reported here for X and Y labels: http://bugzilla.scilab.org/13518 >On a related matter, is it possible to use figure coordinates to position >titles (instead of the axes

Re: [Scilab-users] Title positioning on log-scale plots

2015-11-25 Thread Rafael Guerra
as [x,y] in a.title.position when logflag="ln" or "ll". Thanks and regards, Rafael From: users [mailto:users-boun...@lists.scilab.org] On Behalf Of Antoine Monmayrant Sent: Wednesday, November 25, 2015 12:45 PM To: Users mailing list for Scilab Subject: Re: [Scilab-user

Re: [Scilab-users] Title positioning on log-scale plots

2015-11-25 Thread Serge Steer
Le 25/11/2015 13:45, Antoine Monmayrant a écrit : Le 11/25/2015 12:45 PM, Rafael Guerra a écrit : Dear Scilaber’s, Does anybody know how to [x,y]-position titles on log-scale plots? See examples below which plot ok only if the x-scale is linear: _clf_; x=1:100;y=x.^0.2; _subplot_(2,1,1) p

Re: [Scilab-users] Title positioning on log-scale plots

2015-11-25 Thread Antoine Monmayrant
Le 11/25/2015 12:45 PM, Rafael Guerra a écrit : Dear Scilaber’s, Does anybody know how to [x,y]-position titles on log-scale plots? See examples below which plot ok only if the x-scale is linear: _clf_; x=1:100;y=x.^0.2; _subplot_(2,1,1) plot2d(x,y,5,logflag="ln")/// changing to "nn" or "n

[Scilab-users] Title positioning on log-scale plots

2015-11-25 Thread Rafael Guerra
Dear Scilaber's, Does anybody know how to [x,y]-position titles on log-scale plots? See examples below which plot ok only if the x-scale is linear: clf; x=1:100; y=x.^0.2; subplot(2,1,1) plot2d(x,y,5,logflag="ln") // changing to "nn" or "nl" works, but not "ll" or "ln" a=gca(); a.title.text=