Re: Re: Package Help in Mathematica 6
- To: mathgroup at smc.vnet.net
- Subject: [mg75949] Re: [mg75917] Re: Package Help in Mathematica 6
- From: Murray Eisenberg <murray at math.umass.edu>
- Date: Mon, 14 May 2007 03:29:39 -0400 (EDT)
- Organization: Mathematics & Statistics, Univ. of Mass./Amherst
- References: <200705130949.FAA03034@smc.vnet.net>
- Reply-to: murray at math.umass.edu
No need to change the "/" second argument to StringSplit for Windows.
(Doesn't Mathematica allow in paths "/" for all OS's?)
Of course one could merely use normal OS tools to look at what's in
those directories: one is allowed upon occasion to step outside Mathematica!
Bill Rowe wrote:
> On 5/12/07 at 3:02 AM, raulm231 at comcast.net (Raul Martinez) wrote:
>
>> I ran into a similar problem. I wanted to know all the standard
>> packages included with Math 6. After a bit of help from WRI tech
>> support and some digging in the Document Center I compiled a list of
>> all the Math 6 standard packages. Here they are:
>
> <list of 20 packages snipped>
>
> That wasn't a complete list. For example, it did not include the
> ANOVA package or the BlackBodyRadiation package.
>
> The following will generate a complete list of the packages
> installed with version 6.
>
> Last[StringSplit[#, "/"]] & /@
> FileNames["*",
> ToFileName[{$InstallationDirectory, "AddOns",
> "Packages"}]] // TableForm
>
>
> Note, I am using version 6 on Mac OS X. For other operating
> systems you likely will need to change the second argument to StringSplit.
>
> In addition, there are the legacy packages installed which can
> be listed using:
>
> Last[StringSplit[#, "/"]] & /@
> FileNames["*.m",
> ToFileName[{$InstallationDirectory, "AddOns", "LegacyPackages"}],
> 2] // TableForm
> --
> To reply via email subtract one hundred and four
>
--
Murray Eisenberg murray at math.umass.edu
Mathematics & Statistics Dept.
Lederle Graduate Research Tower phone 413 549-1020 (H)
University of Massachusetts 413 545-2859 (W)
710 North Pleasant Street fax 413 545-1801
Amherst, MA 01003-9305
- References:
- Re: Package Help in Mathematica 6
- From: Bill Rowe <readnewsciv@sbcglobal.net>
- Re: Package Help in Mathematica 6