Re: Listing of Internal IDL Routines [message #50571] |
Mon, 09 October 2006 15:57 |
Robi
Messages: 9 Registered: October 2006
|
Junior Member |
|
|
> procnames = routine_info(/system)
> gives all the internal procedures, and
>
> funcnames = routine_info(/system,/func)
> gives all the internal functions
That is PERFECT! Thanks Wayne! -t.
|
|
|
Re: Listing of Internal IDL Routines [message #50577 is a reply to message #50571] |
Mon, 09 October 2006 14:22  |
David Fanning
Messages: 11724 Registered: August 2001
|
Senior Member |
|
|
Wayne Landsman writes:
> procnames = routine_info(/system)
>
> gives all the internal procedures, and
>
> funcnames = routine_info(/system,/func)
>
> gives all the internal functions
Then, of course, you have to parse through all these and
remove the object methods as well as the routines that
are there, but not exposed to the user. (WIDGET_OLH
seems interesting.) :-)
Cheers,
David
--
David Fanning, Ph.D.
Fanning Software Consulting, Inc.
Coyote's Guide to IDL Programming: http://www.dfanning.com/
Sepore ma de ni thui. ("Perhaps thou speakest truth.")
|
|
|
Re: Listing of Internal IDL Routines [message #50578 is a reply to message #50577] |
Mon, 09 October 2006 14:14  |
news.verizon.net
Messages: 47 Registered: August 2003
|
Member |
|
|
Robi wrote:
> Hi there,
>
> I was wondering if anyone has an ascii listing of the internal
> (proprietary) IDL routines (like total, histogram, etc.)? I can just
> go to $IDL_DIR/lib and find all the IDL routines that are written in
> the IDL language. But I need to get a list of the routines that have
> no available source code. Best -Tim.
procnames = routine_info(/system)
gives all the internal procedures, and
funcnames = routine_info(/system,/func)
gives all the internal functions
--Wayne
|
|
|