Home > chronux > locfit > m > fitted.m

fitted

PURPOSE ^

Fitted values from a locfit object.

SYNOPSIS ^

function y = fitted(fit)

DESCRIPTION ^

 Fitted values from a locfit object.

 Input arguments:
   fit - the locfit() fit.

  Author: Catherine Loader.

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

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

Generated on Fri 28-Sep-2012 12:34:30 by m2html © 2005