pgfplots 在绘制自定义函数时输出移位图形

pgfplots 在绘制自定义函数时输出移位图形

我正在使用 pgfplot 绘制一个函数。但输出结果在图形左侧有一些额外的空白。这真的很奇怪。有人能解释一下吗?

在此处输入图片描述

代码:

\documentclass{article}
\usepackage{pgfplots}
\begin{document}
\pgfmathdeclarefunction{lap}{1}{%
  \pgfmathparse{1/(2*#1)*exp(-abs(x)/#1)}
}

\begin{tikzpicture}
\begin{axis}[every axis plot post/.append style={mark=none,
    domain=-3:3,samples=50,smooth },
enlargelimits=upper
] % extend the axes a bit to the right and top
\addplot{lap(1/0.5)};
\addplot{lap(1/0.75)};
\end{axis}
\end{tikzpicture}
\end{document}

相关内容