MathGroup Archive 2002

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: MultipleListPlot not working

  • To: mathgroup at smc.vnet.net
  • Subject: [mg38324] Re: [mg38261] MultipleListPlot not working
  • From: Tomas Garza <tgarza01 at prodigy.net.mx>
  • Date: Thu, 12 Dec 2002 01:35:37 -0500 (EST)
  • References: <200212100910.EAA14854@smc.vnet.net>
  • Sender: owner-wri-mathgroup at wolfram.com

I copied your code as follows:

In[1]:=
<< "Graphics`MultipleListPlot`"; 
In[2]:=
(list1 = Table[{x, Sin[2*Pi*x]}, {x, 0, 1, 0.1}]; 
   list2 = Table[{x, Cos[2*Pi*x]}, {x, 0, 1, 0.1}]); 
In[3]:=
MultipleListPlot[list1, list2]; 

It works as it should. 

Tomas Garza
Mexico City
----- Original Message ----- 
From: "Steve Gray" <stevebg at adelphia.net>
To: mathgroup at smc.vnet.net
Subject: [mg38324] [mg38261] MultipleListPlot not working


> I can't get this function to do anything. I read it in with
> Needs["Graphics`MultipleListPlot`"];
> and no error messages appear, and the file IS present in
> this directory:
> 
> C:\Program Files\Wolfram Research\Mathematica\4.1 \
> (2)\AddOns\StandardPackages\Graphics\'MultipleListPlot.m
> 
> but when I do an example right out of Help such as
> 
> << Graphics`MultipleListPlot`
> (list1 = Table[{x, Sin[2 Pi x]},      {x, 0, 1, 0.1}];
>  list2 = Table[{x, Cos[2 Pi x]},     {x, 0, 1, 0.1}]);
> 
> MultipleListPlot[list1, list2]
> 
> , nothing appears (no plot shows) except  this text
> 
> \!\(MultipleListPlot[{{0, 0}, {0.1`, 0.5877852522924731`}, {0.2`, 
>         0.9510565162951535`}, {0.30000000000000004`, 
>         0.9510565162951535`}, {0.4`, 0.5877852522924732`}, {0.5`, 
>         1.2246063538223773`*^-16}, {0.6000000000000001`, \
> \(-0.5877852522924734`\)}, {0.7000000000000001`,
> \(-0.9510565162951535`\)}, \
> {0.8`, \(-0.9510565162951536`\)}, {0.9`, \(-0.5877852522924734`\)},
> {1.`, \
> \(-2.4492127076447545`*^-16\)}}, {{0, 1}, {0.1`, 0.8090169943749475`},
> {0.2`, 
>         0.30901699437494745`}, {0.30000000000000004`,
> \(-0.30901699437494756`\
> \)}, {0.4`, \(-0.8090169943749473`\)}, {0.5`, \(-1.`\)}, \
> {0.6000000000000001`, \(-0.8090169943749472`\)}, {0.7000000000000001`,
> \
> \(-0.30901699437494756`\)}, {0.8`, 0.30901699437494723`}, {0.9`, 
>         0.8090169943749473`}, {1.`, 1.`}}]\)
> 
> Anyone have a clue? Thanks for any information.
> 
> 
> 



  • Prev by Date: Re: executing 'ProductLog' from an external program (C code or shell)
  • Next by Date: Re: 1^Infinity
  • Previous by thread: MultipleListPlot not working
  • Next by thread: Re: MultipleListPlot not working