view rDiff/src/locfit/m/fitted.m @ 1:08d3a6143873

Deleted selected files
author vipints
date Tue, 08 Oct 2013 06:54:25 -0400
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;