Ich möchte die Funktion x(t) = tan(t), -pi grafisch darstellen
Package PGF Math Error: Could not parse input '' as a floating
point number, sorry. The unreadable part was near ''. (in '$-\pi $').
als mein Fehler.
irgendwelche Vorschläge?
Antwort1
Ohne ein Beispiel Ihres Codes ist das schwer zu sagen. Ich vermute, Sie verwenden das Pi-Symbol ( $\pi$
) anstelle der Pi-Konstante ( pi
).
Das sollte funktionieren:
\begin{tikzpicture}
\begin{axis}[
domain = -pi/2+0.1:pi/2-0.1,
samples = 200
]
\addplot[black]{tan(deg(x))};
\end{axis}
\end{tikzpicture}
Siehe auchHierfür ein umfassenderes Beispiel.
Antwort2
Eine weitere Lösung mitPSTricksmit pst-plot
und pst-math
.
\documentclass{article}
\usepackage{pst-plot}
\usepackage{pst-math}
\begin{document}
\begin{pspicture}*(-4.5,-2)(4.5,2)
\SpecialCoor
\psaxes[trigLabelBase=2,dx=\psPiH,xunit=\psPi,trigLabels]%
{->}(0,0)(-2,-4.5)(2,5.5)[$x$,0][$y$,90]
\psset{algebraic=true}
\psplot[yMaxValue=6,yMinValue=-3,linewidth=1.6pt,plotpoints=2000,
linecolor=red]{-5}{5}{tan(x)}
\psline[linestyle=dotted](-\psPiH,-5)(-\psPiH,5)
\psline[linestyle=dotted](\psPiH,-5)(\psPiH,5)
\end{pspicture}
\end{document}