Home > chronux_1_15 > locfit > fitted.m

fitted

PURPOSE ^

Fitted values from a locfit object.

SYNOPSIS ^

function y = fitted(fit)

DESCRIPTION ^

 Fitted values from a locfit object.

 Usage:y = fitted(fit)

 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 % 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;

Generated on Tue 15-Aug-2006 22:51:57 by m2html © 2003