EzyFit Function Reference<< Prev | Next >> 
evalfit
Evaluate a fit

Description
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: eq2mlNext: fit 

2005-2006 EzyFit Toolbox 2.04