绘制复杂函数

绘制复杂函数

1/{1+\frac{1}{x}}是否可以使用绘制从 0 到 20 的函数tikzpicture,当我这样做时,我只得到一条直线

\documentclass{article}
\usepackage{pgfplots}

\begin{document}

    \begin{tikzpicture}
    \begin{axis}

    \addplot[smooth,samples=180,domain=0:0.5]{1/{1+{1/x}}};

    \end{axis}
    \end{tikzpicture} 
\end{document} 

答案1

您正在使用

{1/{1+{1/x}}}

你应该使用

{1/(1+(1/x))}

完整的例子:

\documentclass{article}
\usepackage{pgfplots}

\begin{document}    

\begin{tikzpicture}
\begin{axis}
  \addplot[smooth,samples=180,domain=0.0001:20] {1/(1+(1/x))};
\end{axis}
\end{tikzpicture} 

\end{document} 

在此处输入图片描述

相关内容