


Fitted values from a locfit object. Usage:y = fitted(fit) Input arguments: fit - the locfit() fit. Author: Catherine Loader.


0001 function y = fitted(fit) 0002 % Fitted values from a locfit object. 0003 % 0004 % Usage:y = fitted(fit) 0005 % 0006 % Input arguments: 0007 % fit - the locfit() fit. 0008 % 0009 % Author: Catherine Loader. 0010 0011 y = predict(fit,'d','restyp','fit'); 0012 0013 return;