Re: No Output, No Error
- To: mathgroup at smc.vnet.net
- Subject: [mg46386] Re: No Output, No Error
- From: Jens-Peer Kuska <kuska at informatik.uni-leipzig.de>
- Date: Mon, 16 Feb 2004 23:42:22 -0500 (EST)
- Organization: Universitaet Leipzig
- References: <c0qj5b$k87$1@smc.vnet.net>
- Reply-to: kuska at informatik.uni-leipzig.de
- Sender: owner-wri-mathgroup at wolfram.com
Hi,
you must *define* a function befor you can use it, or
you have to load a package that define it.
Or do you mean ListCorrelate[] ?
Regards
Jens
Jackson wrote:
>
> 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.