Wolfram ResearchProductsPurchasingServices & ResourcesAbout UsOur Sites
Services & Resources / Archive
-----
 /
Mathematica
*Mathematica
*Network Mathematica
*webMathematica
*gridMathematica
*Personal Grid Edition
*Wolfram Workbench
*Wolfram Education Group
*Application Packages
*Mathematica for Students
*Mathematica CalcCenter
*Publicon
*A New Kind of Science Explorer
*Mathematical Explorer
*Mathematica Teacher's Edition
*Calculus WIZ
*Mathematica Player
*Ask about this page
*Print this page
*Email this page
*Give us feedback
*
Sign up for our newsletter:

How do I specify options to MultipleListPlot without causing errors?

In some examples of MultipleListPlot, adding options generates errors.

In[1]:=
In[2]:=
Out[2]=
 

 
In[3]:=
Out[3]=
 

 

This is due to a typographical error in MultipleListPlot.m. If you want to edit the file, use a plain text editor to go to line 410 of MultipleListPlot.m and change the following command.

MultipleListPlot[{data__List?(Length[#] > 3 &)}, opts___?optionQ] := 

The new command should look as follows.

MultipleListPlot[{data__List?(Length[#] > 3 &)}, opts___?OptionQ] := 

If you do not feel comfortable in editing files, a newer version of this file is available from the following URL.

http://support.wolfram.com/archive/mathematica/files/MultipleListPlot.m

This new file should replace the following old file.

Download this FAQ as a Mathematica 5.2 Notebook






 © 2008 Wolfram Research, Inc.  Terms of Use  Privacy Policy