Re: No Output, No Error
- To: mathgroup at smc.vnet.net
- Subject: [mg46388] Re: [mg46351] No Output, No Error
- From: Tomas Garza <tgarza01 at prodigy.net.mx>
- Date: Mon, 16 Feb 2004 23:42:27 -0500 (EST)
- References: <200402161359.IAA20502@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
Bear in mind that Correlation is a function within an AddOn package: Statistics`MultiDescriptiveStatisitcs`. If you don't load this package prior to calling Correlation, Mathematica won't recognize the name. If you have inadvertently tried to use the function before loading the package you must remove it first. Try this (and be careful with the " ` " sign: it is the French accute, and not a quotation mark " ' "): In[1]:= Remove[Correlation] In[2]:= << "Statistics`MultiDescriptiveStatistics`" In[3]:= Correlation[xlist, ylist] Out[7]= 1 Tomas Garza Mexico City ----- Original Message ----- From: "Jackson" <jackson101 at hotmail.com> To: mathgroup at smc.vnet.net Subject: [mg46388] [mg46351] No Output, No Error > Warning, new user! > > I have been experiencing some weird output. Some functions just output the > input. No errors, no indications of a problem. Most functions work well, but > some just don't provide any feedback as to the error. > > For example: > xlist = {1, 2, 3, 4, 5}; > ylist = {2, 4, 6, 8, 10}; > Correlation[xlist, ylist] > > Yields the output with no error: > > Correlation[{1, 2, 3, 4, 5}, {2, 4, 6, 8, 10}] > > > > Thanks. > > > >
- References:
- No Output, No Error
- From: "Jackson" <jackson101@hotmail.com>
- No Output, No Error