Where the heck is the IDL Virtual Machine? [message #63078] |
Tue, 28 October 2008 12:29 |
David Fanning
Messages: 11724 Registered: August 2001
|
Senior Member |
|
|
Folks,
Does anyone here know how to access and download the IDL
Virtual Machine? I gave some software to some colleagues
to run on the Virtual Machine and neither they nor I can
find the darn thing. A search of "IDL Virtual Machine" on
the ITTVIS home page turns up nothing useful. And when I
finally got to the IDL Download page, where I was told
this was located, I turned up nothing there, either.
Has anyone ever downloaded the thing!?
Cheers,
David
--
David Fanning, Ph.D.
Coyote's Guide to IDL Programming (www.dfanning.com)
Sepore ma de ni thui. ("Perhaps thou speakest truth.")
|
|
|
Re: Where [message #63084 is a reply to message #63078] |
Tue, 28 October 2008 10:28  |
Brian Larsen
Messages: 270 Registered: June 2006
|
Senior Member |
|
|
On Oct 28, 5:48 am, silviad...@gmail.com wrote:
> Hallo!
> Why IDL returns -1 when i do:
> where(array eq 0.785)?
> Array elements are not zero!
> Thank you!
This is the as advertised behavior, -1 is the index that matches your
query (meaning none match)
Try this for some insight
a=findgen(10)
ind=where(a eq 2.4, n_ind)
print, a, ind
and you get -1, 0. Meaning no elements in a are equal to 2.4 since
they are 0,1,2,3,4,5,6,7,8,9.
Make sense?
Cheers,
Brian
------------------------------------------------------------ --------------
Brian Larsen
Boston University
Center for Space Physics
http://people.bu.edu/balarsen/Home/IDL
|
|
|
|
|