Re: MultipleListPlot - does not work
- To: mathgroup at smc.vnet.net
- Subject: [mg78935] Re: MultipleListPlot - does not work
- From: dh <dh at metrohm.ch>
- Date: Fri, 13 Jul 2007 06:02:18 -0400 (EDT)
- References: <f74t8n$94s$1@smc.vnet.net>
Hi, I think your ar right. Mathematica has not found MultipleListPlot. You can check by: "??MultipleListPlot" this should give the definition or a message that the symbol is not found. In this case I would first restart Mathematica and if this does not help reinstall Mathematica because your search path is screwed up or the package deleted. hope this helps, Daniel amigupta at gmail.com wrote: > Hi ! > > I am new to Mathematica and trying to use MultipleListPlot function to > plot two lists. But for some reason it does not seem to work. What I > did is (my comments in lines starting with //): > ---------------------------------------------------------------------------------------------------------------------------------------------------- > //loading the package > > << Graphics`MultipleListPlot` > > //defining the lists > list1 = {1, 2, 3}; > list2 = {4, 5, 6}; > > MultipleListPlot[list1, list2] > > //mathematica output > MultipleListPlot[{1, 2, 3}, {4, 5, 6}] > ---------------------------------------------------------------------------------------------------------------------------------------------------- >>From my two-days experience with Mathematica, it seems that > Mathematica couldn't find the function MultipleListPlot and hence, it > is outputting the expended list only. I am using Mathematics 5.2 . Any > suggestions about what I am doing wrong ? > >