[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Plotting large values with small limits cause to make axes mad.
From: |
Tetsuro Kurita |
Subject: |
Re: Plotting large values with small limits cause to make axes mad. |
Date: |
Wed, 13 Feb 2019 20:35:23 +0900 |
I forget to write following information.
I tested on octave 4.4.1.
The graphics toolkit was fltk or qt.
This problem does not occur when gnuplot is used as graphics toolkit.
Tetsuro Kurita
> 2019/02/13 20:14、Tetsuro Kurita <address@hidden> :
>
> Hello,
>
> I have a problem when I plot large values of which variation is small.
>
> Following code is an example.
>
> x0 = 1e+6
> x = linspace(x0,x0+0.1, 10);
> plot(x,x)
>
> In the plot result of above code, the axes are sticking out of the window.
>
> In my tests, plotting large values with small limits causes problem.
>
> Does anyone know to avoid this problem.
>
> Tetsuro Kurita