绘制 x(t) = tan(t) -pi

绘制 x(t) = tan(t) -pi

我想绘制函数 x(t) = tan(t), -pi

Package PGF Math Error: Could not parse input '' as a floating
point number, sorry. The unreadable part was near ''. (in '$-\pi $').

作为我的错误。

有什么建议么?

答案1

如果没有代码示例,很难判断。我猜你使用的是 pi 符号 ( $\pi$),而不是 pi 常数 ( pi)。

这应该有效:

\begin{tikzpicture}
    \begin{axis}[
        domain  = -pi/2+0.1:pi/2-0.1,
        samples = 200
    ]
    \addplot[black]{tan(deg(x))};
    \end{axis}
\end{tikzpicture}

另请参阅这里以获得更全面的例子。

答案2

另一个解决方案技巧使用pst-plotpst-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}

相关内容