From: Dima Lotnik on
Hi everyone!
I have some problems.
I heed to plot two 2d graphs like this
figure;
hold on;
plot(x,y);
plot(x,y1);

but y and y1 is quite different data and what i want to make is y-axis for data y create at left side and y1-axis at right side. how to make this?

thanks for help
From: dpb on
Dima Lotnik wrote:
....

> but y and y1 is quite different data and what i want to make is y-axis
> for data y create at left side and y1-axis at right side. how to make this?
....

doc plotyy

--
From: Dima Lotnik on
dpb <none(a)non.net> wrote in message <hu64vg$u0$2(a)news.eternal-september.org>...
> Dima Lotnik wrote:
> ...
>
> > but y and y1 is quite different data and what i want to make is y-axis
> > for data y create at left side and y1-axis at right side. how to make this?
> ...
>
> doc plotyy
>
> --

Thanks a lot. I knew that the solution must be simple.