正态多元标准 TIKZ

正态多元标准 TIKZ

在此处输入图片描述

我需要在 TIKZ 中执行此图表,不需要相等,而是要近似。

答案1

这或多或少取自 pgfplots 手册第 152 页下面的示例。请使用 进行编译-shell-escape,例如pdflatex -shell-escape <file.tex>

\documentclass[tikz,border=3.14mm]{standalone}
\usepackage{pgfplots}
\pgfplotsset{compat=1.16} 
\begin{document}
\begin{tikzpicture} 
\begin{axis}[domain=-2:2,domain y=-2:2]
 \addplot3 [contour gnuplot={output point meta=rawz,labels=false},z filter/.code={\def\pgfmathresult{-1}}] 
  {5*pow(max(x,0),2)*exp(-x^2-y^2)};
 \addplot3 [mesh,color=red,samples=51,samples y=51] {5*pow(max(x,0),2)*exp(-x^2-y^2)};
\end{axis}
\end{tikzpicture}
\end{document}

在此处输入图片描述

相关内容