itools [message #37211] |
Wed, 26 November 2003 06:46  |
tschulze
Messages: 3 Registered: November 2003
|
Junior Member |
|
|
Hi all,
in the moment I'm reading the itool-develpoer-guide. Can someone tell
where to find a shorter introduction to itool-programming? (I'm soon
reaching page 100, and I'd like to not read the following 140).
Unfortunately these pages did not prepare me to programm my own itools
- for my guess, there not enough examples.
Thanks Thomas
|
|
|
Re: itools [message #55609 is a reply to message #37211] |
Thu, 30 August 2007 10:05  |
R.G.Stockwell
Messages: 163 Registered: October 2004
|
Senior Member |
|
|
"Reimar Bauer" <R.Bauer@fz-juelich.de> wrote in message
news:fb6n4u$7ihv$1@zam602.zam.kfa-juelich.de...
> Hi
>
> I have some trouble with iplot.
>
>> idl
> IDL> iplot,dindgen(1000000)
>
> How do I need to configure idl to get that plot faster shown.
>
> After start of idl it needs more as 5 mins on my box.
>
> time_test3 tells
> 0.863153=Total Time, 0.032215425=Geometric mean, 23 tests.
>
> cheers
> Reimar
No problems here:
idl 6.3, on WinXP
Elapsed time: 13.123000 Seconds.
0.796000=Total Time, 0.027919187=Geometric mean, 23 tests.
|
|
|
Re: itools [message #55610 is a reply to message #37211] |
Thu, 30 August 2007 10:03  |
Rick Towler
Messages: 821 Registered: August 1998
|
Senior Member |
|
|
From your previous post, I see you're running v6.4 on Linux. 5 minutes
seems excessive but my guess is that you're using a machine with an
integrated graphics controller with poor 3d support in Linux.
Can you manipulate the plot once it does come up (zoom, rotate, translate)?
-r
Reimar Bauer wrote:
> Hi
>
> I have some trouble with iplot.
>
>> idl
> IDL> iplot,dindgen(1000000)
>
> How do I need to configure idl to get that plot faster shown.
>
> After start of idl it needs more as 5 mins on my box.
>
> time_test3 tells
> 0.863153=Total Time, 0.032215425=Geometric mean, 23 tests.
>
> cheers
> Reimar
|
|
|
Re: itools [message #55611 is a reply to message #37211] |
Thu, 30 August 2007 09:19  |
Dave Wuertz
Messages: 6 Registered: August 2007
|
Junior Member |
|
|
Reimar Bauer said the following on 8/30/2007 11:19 AM:
> Hi
>
> I have some trouble with iplot.
>
>> idl
> IDL> iplot,dindgen(1000000)
>
> How do I need to configure idl to get that plot faster shown.
>
> After start of idl it needs more as 5 mins on my box.
>
> time_test3 tells
> 0.863153=Total Time, 0.032215425=Geometric mean, 23 tests.
>
> cheers
> Reimar
Reimar,
It takes 5 *seconds* on my Linux-Intel box running IDL v6.4.
I cannot offer you advice, though, as I do not use the iTools.
-Dave Wuertz
|
|
|
Re: itools [message #55612 is a reply to message #37211] |
Thu, 30 August 2007 08:30  |
David Fanning
Messages: 11724 Registered: August 2001
|
Senior Member |
|
|
Reimar Bauer writes:
> I have some trouble with iplot.
>
>> idl
> IDL> iplot,dindgen(1000000)
>
> How do I need to configure idl to get that plot faster shown.
Try this:
IDL> iplot,Rebin(dindgen(1000000), 1000)
How big is your monitor, anyway? The size of a room?
I don't think you can plot a million of anything and
see much of value on a normal display.
Or are you just trolling this morning? :-)
Cheers,
David
--
David Fanning, Ph.D.
Fanning Software Consulting, Inc.
Coyote's Guide to IDL Programming: http://www.dfanning.com/
|
|
|