Mehrere Funktionen in einem Plot, pgfplots
Hallo,
ich versuche in ein Bild mehrere, skalierte Fkt. unterzubringen:
\begin{tikzpicture}
\begin{axis}[%
title=xxx,
xmin=0,
xmax=1,
ymin=0,
ymax=1,
legend pos=outer north east,
domain=0:1]
\addplot[no markers, blue] { 1-x^4 };
\addplot[no markers, red] { 1-0.5x^4 };
\addplot[no markers, black] { 1-0.05x^4 };
\addplot[no markers, green] { 1-0.005x^4 };
\end{axis}
\end{tikzpicture}
Leider erhalte ich eine Fehlermeldung
! Package PGF Math Error: Unknown operator `x' or `x^' (in ' 1-0.5x^4 ')
Muss ich hier jeweils ein andere "x" nehmen?