bug report [message #91876] |
Tue, 08 September 2015 10:32  |
chuxiangning
Messages: 17 Registered: September 2012
|
Junior Member |
|
|
I played ipython notebook with IDL for fun. It is a nice tool!
However, I found a bug when I use direct graphic system.
For example, if I run the following:
cell1:
x = dindgen(100)
y = sin(0.1*x)
plot, x,y
cell2:
plot, x,y
Cell1 returns a figure, but cell2 does not.
If I plot with the function plot, things work ok:
cell1:
x = dindgen(100)
y = sin(0.1*x)
plot(x,y)
cell2:
plot(x,y)
Both cell1 and cell2 return figures.
|
|
|
Re: bug report [message #91878 is a reply to message #91876] |
Tue, 08 September 2015 12:36  |
chris_torrence@NOSPAM
Messages: 528 Registered: March 2007
|
Senior Member |
|
|
On Tuesday, September 8, 2015 at 11:32:18 AM UTC-6, chu xiangning wrote:
> I played ipython notebook with IDL for fun. It is a nice tool!
> However, I found a bug when I use direct graphic system.
>
> For example, if I run the following:
>
> cell1:
> x = dindgen(100)
> y = sin(0.1*x)
> plot, x,y
> cell2:
> plot, x,y
>
> Cell1 returns a figure, but cell2 does not.
>
>
> If I plot with the function plot, things work ok:
>
> cell1:
> x = dindgen(100)
> y = sin(0.1*x)
> plot(x,y)
> cell2:
> plot(x,y)
>
> Both cell1 and cell2 return figures.
Yes, this was a known bug. It will be fixed in an upcoming patch.
Cheers,
Chris
|
|
|