使用 TikZ 绘制多变量函数

使用 TikZ 绘制多变量函数

我正在尝试创建一个具有三个轴和一条曲线的图形,如下图所示 在此处输入图片描述

但是,我看不到在 TikZ 图中添加多变量函数的方法。

答案1

在此处输入图片描述

\documentclass{article}


\usepackage{pgfplots}



\begin{document}

\begin{tikzpicture}
\begin{axis}[]
\addplot3[domain=0:720,surf] {sin(x)};
\end{axis}
\end{tikzpicture}
\end{document}

编辑

回应OP的评论:

\documentclass{article}


\usepackage{pgfplots}



\begin{document}

\begin{tikzpicture}
\begin{axis}[]
\addplot3[domain=0:1,surf] {sin(720*(x+y)};
\end{axis}
\end{tikzpicture}
\end{document}

如果您想要一个三个变量的函数,那么您会得到一个四维对象,而这无法在三维空间中绘制。

在此处输入图片描述

相关内容