I am plotting line given by y(x) expression evaluated at regularly spaced points, e.g.
\def\ffIiC{+0.0436275-1.18778*\x^1+0.542693*\x^2}
% ...
\draw (0,0.0436275) \foreach\x in {0,.1,...,4}{ -- ({\x},{\ffIiiC}) };
% ^^^^^^^^^^^^^
However, I always need to specify the first point explicitly. Is there a way to avoid that?