答案1
可以使用该pgfplots
包及其\addplot {f(x)};
参见下面的示例手册pgfplots
第 53 页。
平均能量损失
\documentclass{standalone}
\usepackage{pgfplots}
\pgfplotsset{compat=1.14}
\begin{document}
\begin{tikzpicture}
\begin{axis}
\addplot {x^2};
\addplot {sqrt(x)*10};
\addplot {exp(x/2)};
\end{axis}
\end{tikzpicture}
\end{document}