Or, download here:
cd locfit-2.01 MATLABROOT=/usr/local/lib/matlab export MATLABROOT ./install.matlabNote that you'll need write privileges to /usr/local/lib and $MATLABROOT/toolbox.
If you're willing to try compilation of the mex files on other platforms, please let me know.
As of version 1.0 of chronux, nearly all of Locfit's functionality is working in matlab. The commands are similar to the R version of locfit, but using Matlab's syntax. For example,
load ethanol; % load the dataset. fit = locfit(E,NOx) % local regression, with x,y vectors. lfplot(fit) % plot the fitted curve.Optional arguments are given as 'name','value' pairs, for example,
fit = locfit(E,NOx,'nn',0.4)specifies a nearest neighbor bandwidth.