Re: [Scilab-users] trouble with vectorial export

2013-02-08 Thread Calixte Denizet
Hi Adrien, About vectorial export in 5.3: we used a thirdparty library (gl2ps) which used an opengl trick to make the export, so huge graphics could to lead to crash. In 5.4, we completely rewrite the vectorial exporter (we removed gl2ps) and huge graphics are now ok (the export can be long

[Scilab-users] Plots on second Y axis

2013-02-08 Thread Samuel Enibe
Dear Sir, Could you please let me know the SCILAB command to use in making a plot on the SECOND (right) Y axis. Thank you very much. -- Samuel Ogbonna Enibe University of Nigeria, Nsukka, Nigeria Tel: +2348063646798 Email: samuel.en...@unn.edu.ng enibe...@yahoo.com

Re: [Scilab-users] Plots on second Y axis

2013-02-08 Thread sgougeon
Hello, according to your needs, you may do either: plot2d() ax = gca(); ax.y_location = 'right'; or demo_gui() // then Graphics = 2D 3D = plotyy | plotyyy // and look at the code, using help newaxes // http://help.scilab.org/docs/5.4.0/en_US/newaxes.html Regards Samuel