我怎样才能消除该图的负数部分?

我怎样才能消除该图的负数部分?

在为我的学生撰写有关解调的这篇文章时,我只想画出这个函数的正部分\cos(10*\pi*\x r)(1.5*\cos(0.75*\pi*\x r)+2),但我不知道如何消除它的负部分,这是代码,但它编译了整个函数,有什么有用的想法吗?

    \begin{tikzpicture}[scale=0.75]
\draw[-latex, smooth] (0,0)--(8,0) node[above] {$t$};
\draw[-latex, smooth] (0,-3.8)--(0,3.8) node[right] {$u$};
\draw[thick] plot[domain=0:7.5,samples=5000] (\x,{cos(10*pi*\x r)*(1.5*cos(0.75*pi*\x r)+2)});
\node at (3.8,3.8) {La tension modulée $s(t)$};
\end{tikzpicture}

在此处输入图片描述

它应该是这样的(大约,哈哈):

在此处输入图片描述

答案1

感谢@PaulGaborit 的建议,结果如下:

    \begin{tikzpicture}[scale=0.75]
\draw[-latex, smooth] (0,0)--(8,0) node[above] {$t$};
\draw[-latex, smooth] (0,-3.8)--(0,3.8) node[right] {$u$};
\draw[thick] plot[domain=0:7.5,samples=5000] (\x,{max(0,cos(10*pi*\x r)*(1.5*cos(0.75*pi*\x r)+2))});
\node at (3.8,3.8) {La tension modulée $s(t)$};
    \end{tikzpicture}

在此处输入图片描述

相关内容