我想绘制一条旋转曲线(高斯曲线),但我不知道该怎么做。我在网上搜索后发现,我必须定义高斯曲线,因为它不包含在内。但我该如何绘制这样一个旋转 270° 的函数呢?
谢谢!
答案1
1/sqrt(2pi)e^{-x^2/2}
您可以在 中绘制高斯曲线PGFPlots
。然后,您可以使用standalone
包来包含图形并使用选项来旋转图像。
\begin{figure}
\includestandalone[mode = image]{myplot}
\end{figure}
以下是关于旋转图形的四种不同方法的文章:旋转带标题的图片
或者您可以简单地使用选项 rotate around = 270 旋转 PGFPlots,然后插入独立图形。
如何使情节旋转:
\documentclass[tikz]{standalone}
\usepackage{pgfplots}
\pgfplotsset{compat = newest}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
anchor = origin,
rotate around={270:(current axis.origin)},
hide axis
]
\addplot[smooth, domain=-5:5] {1/sqrt(2*pi)*exp(-\x^2/2)};
\end{axis}
\end{tikzpicture}
\end{document}