我试图用TikZ和PGF绘制一个函数。此函数包含一个max运算符(返回给定两个参数的较大值)。
我想做以下事情:
\begin{tikzpicture}
\begin{axis}[xlabel=$x$, ylabel=$y$]
% function that should use the max(a,b) function
\addplot [domain=0:90, samples=90]{max{0,1-x/20}};
\addlegendentry{test function}
\end{axis}
\end{tikzpicture}
我正在使用MikTex,当我编译上面时,我收到以下错误消息:
PGF数学:对不起,浮点单元的内部例程]'。 (在' max {0,1-x / 20}')。 ... samples = 90] {max {0,1-x / 20}};
因为我无法找到对max函数的任何引用,我认为它甚至不存在。我做错了什么或者我怎么能模仿这种行为?
答案 0 :(得分:0)
我意识到为乳胶相关问题有一个特殊的location。对于我在那里发布的同一个问题,我得到了答案:https://tex.stackexchange.com/questions/222649/tikz-pgf-function-plotting-is-there-a-maxa-b-function。