答案1
该pgfplots
包有一个\addplot gnuplot
命令,它使用 gnuplot 进行计算,然后导入数据进行绘图pgfplots
。在下面的示例中,第一个函数用蓝色绘制,第二个函数用红色绘制。
\documentclass{standalone}
\usepackage{tikz}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\begin{axis}
\addplot gnuplot {sin(x)};
\addplot {sin(x)};
\end{axis}
\end{tikzpicture}
\end{document}