答案1
当然,你可以声明这样的函数并用纯 Ti 绘制它钾Z。(我同意 John Kormylo 的观点,这pgfplots
可能更合适,但您可以直接绘制函数,无需表格。)您samples at
可以控制评估函数的点。在函数为线性的域中,不需要超过 2 个样本。
\documentclass[tikz,border=3.14mm]{standalone}
\begin{document}
\begin{tikzpicture}[declare function={f(\x)=ifthenelse(\x<0.35,-\x,
ifthenelse(\x<0.55,(2-\x)*\x,-\x));}]
\draw[-stealth] (0,0) -- (1.2,0) node[below left]{$t$};
\draw[-stealth] (0,-1) -- (0,1) node[below left]{$f(t)$};
\draw[blue] plot[variable=\x,domain=0:1,samples
at={0,0.3499,0.35,0.36,0.37,...,0.55,0.55001,1}] ({\x},{f(\x)});
\end{tikzpicture}
\end{document}