Mercurial > repos > vipints > rdiff
comparison rDiff/src/locfit/m/fitted.m @ 0:0f80a5141704
version 0.3 uploaded
author | vipints |
---|---|
date | Thu, 14 Feb 2013 23:38:36 -0500 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:0f80a5141704 |
---|---|
1 function y = fitted(fit) | |
2 | |
3 % Fitted values from a locfit object. | |
4 % | |
5 % Input arguments: | |
6 % fit - the locfit() fit. | |
7 % | |
8 % Author: Catherine Loader. | |
9 | |
10 z = predict(fit,'d','restyp','fit'); | |
11 y = backtr(z,fit); | |
12 | |
13 return; |