List Archives > 
Maple User Group List Archive > 
Archive by date > 
This Month By Date > 
This Month By Topic
[MUG] Re: _EnvTryHard , _EnvSolveOverReals etc
| [MUG] Re: _EnvTryHard , _EnvSolveOverReals etc |
|
Author: Maple User Group
Posted: Fri, 20 Dec 2002 14:20:02 -0500
|
>> From: Maple User Group "maple_gr"
>>From: "Andre Van Moer" "avanmoer"
>Where may I find an exhaustive list of the Names beginning with the
>underscore character like _EnvTryHard and _EnvSolveOverReals ?
-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-
Date: Tue, 17 Dec 2002 14:34:05 -0800
To: "maple-list"
From: David Harrington "dharr"
Subject: _EnvTryHard , _EnvSolveOverReals etc
anames(names) has some of them.
-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-=*=-
From: "Dr Francis J. Wright" "F.J.Wright"
To: "avanmoer"
Subject: _EnvTryHard , _EnvSolveOverReals etc
Date: Wed, 18 Dec 2002 18:28:57 -0000
You can find the names beginning with _ currently in use as follows. I
*think* this will check all relevant names. The following output comes from
a new Maple 8 session:
> select(x->convert(x,string)[1]="_", [unames(),anames('anything')]);
[_syslib, _X, _Y, _Z, _xml, _maplet, _treeMatch, _jvm, _unify]
You can execute this at any time to check the names currently in use, which
will change during a maple session.
The reason why I have converted the symbols to strings is to avoid
artificially using the name _ itself, as happens with this version:
> select(x->substring(x,1)=_, [unames(),anames('anything')]);
[_syslib, _, _X, _Y, _Z, _xml, _maplet, _treeMatch, _jvm, _unify]
However, just running the command has probably already introduced some names
what would not otherwise have been in use.
To check all names that could in principle be used would be difficult,
because code is loaded dynamically and names can be generated dynamically.
You might get some useful information by searching the Maple library using
something like grep (outside of Maple), but that's probably not the kind of
solution you're looking for!
Francis
|
[View Complete Thread]
Previous by date: [MUG] abstract algebra impossible in Maple?, Charles James Leonardo Quarra Cappiello
Next by date: [MUG] Re: Nargs, Maple User Group
Previous thread: [MUG] The MAPLE 6/7/8: New Books and Software, Academy
Next thread: [MUG] Nargs, PierLuigi Zezza
|