Prev: Number output formatting was Re: First function debug help
Next: FindMaximum/NMaximize vs. Excel Solver
From: Albert Retey on 24 Jan 2010 05:38 Hi, > Thanks to all for the many great replies in this thread. Name > conflicts really seem to be a common problem with several of the > Mathematica archive packages that I've tried. Sometype of naming > convention practice seems important. E.g. - the last one I tried was > a package on importing triple variables for plotting: > > ----------- Import["ListToArray.m"] You should recognize that the standard way to "import" a Mathematica Package file is via Needs or Get. You might want to look these and their differences/applications in the documentation... > ListToArray::shdw: ListToArrayappears in multiple contexts > {ListToArray`,Global`} definitions in context 'ListToArray' may > shadow or be shadowed by other definitions. ----------- > > For VBA and javascript, I usually just append my initials for > publically exposed packages to prevent conflicts. I don't know VBA and javascript very well, but from most other languages I know there are possibilities to load ("import", Needs ...) packages without necessarily expose their namespaces and thus avoid any conflicts. Actually, as usual, this can be accomplished with a few lines of somewhat hackish mathematica code, e.g.: Rod = 9; BeginPackage["tmp`"]; Quiet[Needs["Units`"], General::shdw]; EndPackage[]; $ContextPath = DeleteCases[$ContextPath, "tmp`"]; So after this, you have the global Rod (Global`Rod) which is still set to 9 and you have the Units`-Package Rod (Units`Rod) available with it's "full qualified name", Units`Rod. This way you can have loaded and use as many packages with conflicting names as you want, of course at the cost of having to use the lengthy full qualified names. There are two open questions: Why do I need the Quiet within the BeginPackage/EndPackage? Actually $ContextPath does not contain Global` when the Needs is executed, so I would consider it to be a bug that the shadow message is issued. Are there good reasons for the Message to be issued nevertheless? The other question is why there are no functions to do the above (and maybe more) in a more obvious way, I think a better handling of namespaces would help on the way to qualify Mathematica to be used for more complex programming tasks... hth, albert
First
|
Prev
|
Pages: 1 2 Prev: Number output formatting was Re: First function debug help Next: FindMaximum/NMaximize vs. Excel Solver |