Re: contexts and functions
- To: mathgroup at smc.vnet.net
- Subject: [mg94571] Re: contexts and functions
- From: Jean-Marc Gulliet <jeanmarc.gulliet at gmail.com>
- Date: Tue, 16 Dec 2008 02:37:30 -0500 (EST)
- Organization: The Open University, Milton Keynes, UK
- References: <gi5jp8$ps3$1@smc.vnet.net>
Francisco Gutierrez wrote: > A very elementary question. I have created a package with several functions in it. How can I retrieve a list of all the functions the package has? <snip> Note sure whether this is what you are looking for, but having loaded the package into memory you can see the symbols contained in its context thanks to the command Information[] (shortcut: question mark ?) Say we want to what is available with the package VectorAnalysis: Needs["VectorAnalysis`"] ?VectorAnalysis`* (* Output: table showing all the symbols in this context *) Hope this helps, -- Jean-Marc