>-----Original Message-----
>[[ E-Post Adressen entfernt -- REM ]]
>Subject: PlotRange->{0,Max}
>
>
>Hallo,
>
>ein Feature, das ich mir für die nächste Mathematica-Version wünsche:
>die Möglichkeit, für MultipleListPlot (ListPlot,Plot...) die PlotRange
>von einem festem Wert bis zum Maximum anzugeben, z.B.
>PlotRange->{0,Max}. Oder habe ich diese Option übersehen?
>
>mfg, Ulrich Schwarz
>
>--
>Ulrich T. Schwarz Tel: (++49) 0941 943 2113
>NWF II - Physik Fax: (++49) 0941 943 2754
>Universitaet Regensburg e-mail:
>uli.schwarz@XXXXXXX.de
>D-93040 Regensburg
>url: http://homepages.uni-regensburg.de/~scu04188
>
>
In[13]:= ss = Table[{t, Sin[t]}, {t, 1., 3., .2}]
In[14]:= cc = Table[{t, Cos[t]}, {t, 1.5, 3.5, .2}]
In[6]:= << Graphics`MultipleListPlot`
In[18]:=
MultipleListPlot[ss, cc, PlotJoined -> True,
PlotRange -> {{0, Automatic}, All}]
Siehe auch Help > ... > PlotRange
"A setting of the form {min, Automatic} specifies a particular minimum value
for a coordinate, and a maximum value to be determined automatically."
--
Hartmut Wolf