EzyFit Function Reference | << Prev | Next >> |
Y = evalfit(F,X) evaluates the fit F for the values X. Y is a vector
of the same length as X, with Y(i) = F(X(i)).
Example:
plotsample('power');
f = fit('power; log');
x = logspace(1,3,1000);
hold on; plot(x,evalfit(f,x),'r-'); hold off;
See Also
fit, showfit, selectfit, fitparam.
Previous: eq2ml | Next: fit |