view rDiff/src/locfit/m/smooth_lf.m @ 2:233c30f91d66

updated python based GFF parsing module which will handle GTF/GFF/GFF3 file types
author vipints <vipin@cbio.mskcc.org>
date Tue, 08 Oct 2013 07:15:44 -0400
parents 0f80a5141704
children
line wrap: on
line source

function z=smooth_lf(x,y,varargin)

% must (unlike R smooth.lf() function) give x and y.
% also R's direct=T is automatic.
%

xev = x;
if (k>1)
  if (strcmp(varargin{1},'xev'))
    xev = varargin{2};
    varargin(1:2) = [];
  end;
end;
fit = locfit(x,y,varargin{:},'ev',xev,'module','simple');
z = lfknots(fit);
fv = invlink(z(:,1),fit.fit_points.family_link);

z = { xev, fv };

return;