Home > chronux_1_0 > locfit > 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 y = predict(fit,'d','restyp','fit');
0011 
0012 return;

Generated on Fri 09-Jun-2006 23:38:05 by m2html © 2003