view rDiff/src/locfit/m/fitted.m @ 3:29a698dc5c7e default tip

Merge multiple heads.
author Dave Bouvier <dave@bx.psu.edu>
date Mon, 27 Jan 2014 14:15:36 -0500
parents 0f80a5141704
children
line wrap: on
line source

function y = fitted(fit)

% Fitted values from a locfit object.
%
% Input arguments:
%   fit - the locfit() fit.
%
%  Author: Catherine Loader.

z = predict(fit,'d','restyp','fit');
y = backtr(z,fit);

return;