如何在 pgfplots 中绘制平滑曲线?以及如何删除 y 轴刻度?

How to draw a smooth curve in pgfplots? And how to remove y-axis ticks?

我正在使用 Latex beamer 准备演示文稿。我决定添加一个情节。

中间曲线应该是正态分布;但它有尖角。这是为什么?

另外,我可以删除 y 轴上的刻度线吗?

这是我的代码:

\begin{frame}
\begin{tikzpicture}
\begin{axis}[domain=-1:1]
\addplot+[no markers] {4*exp(-4*(x+1))};
\addplot+[no markers] {1/sqrt(2*pi*0.02)*exp(-(x^2)/(2*0.02))};
\addplot+[no markers] {4*exp(4*(x-1))};
\end{axis}
\end{tikzpicture} 
\end{frame}

谢谢

  • 要获得平滑的曲线,增加采样点的数量,例如samples=100

  • 删除 y 轴标签:yticklabels=\empty


\documentclass{beamer}

\usepackage{pgfplots}

\begin{document}

\begin{frame}
\begin{tikzpicture}
\begin{axis}[domain=-1:1,samples=100,yticklabels=\empty]
\addplot+[no markers] {4*exp(-4*(x+1))};
\addplot+[no markers] {1/sqrt(2*pi*0.02)*exp(-(x^2)/(2*0.02))};
\addplot+[no markers] {4*exp(4*(x-1))};
\end{axis}
\end{tikzpicture} 
\end{frame}

\end{document}