

How can I align the zeros in a two y-axes plot
Hi everyone,
I have drawn a plot with two y-axes and I would like to have the zeros of both axes aligned. Do you know if anything like that is possible in Scilab ?

Scilab


Can you post the Scilab code for the same?
Meanwhile, you can try the following command and set the axes boundries for both axes.
set(gca(),'data_bounds',[min(x),min(y); max(x),max(y)]
Login to add comment