From: <sch...@us...> - 2012-04-02 18:16:57
|
Revision: 10134 http://octave.svn.sourceforge.net/octave/?rev=10134&view=rev Author: schloegl Date: 2012-04-02 18:16:48 +0000 (Mon, 02 Apr 2012) Log Message: ----------- fix for applying generate_html to NaN-toolbox Modified Paths: -------------- trunk/octave-forge/extra/NaN/INDEX Added Paths: ----------- trunk/octave-forge/extra/NaN/inst/xptopen.m Modified: trunk/octave-forge/extra/NaN/INDEX =================================================================== --- trunk/octave-forge/extra/NaN/INDEX 2012-04-02 18:04:33 UTC (rev 10133) +++ trunk/octave-forge/extra/NaN/INDEX 2012-04-02 18:16:48 UTC (rev 10134) @@ -3,11 +3,11 @@ coefficient_of_variation geomean meansq skewness covm cor cov corrcoef harmmean median statistic detrend kurtosis moment std mad naninsttest nantest - nansum nanstd nanconv nanconv2 nanfft nanfilter + nansum nanstd nanconv nanfft nanfilter nanfilter1uc normpdf normcdf norminv meandev percentile quantile rankcorr ranks rms sumskipnan var mean sem spearman trimean tpdf tcdf tinv zscore - conv2nan flag_implicit_significance xcovf train_sc test_sc + flag_implicit_significance xcovf train_sc test_sc xval classify train_lda_sparse decovm gscatter mahal cdfplot hist2res fss cat2bin ttest ttest2 xptopen bland_altman cumsumskipnan range Added: trunk/octave-forge/extra/NaN/inst/xptopen.m =================================================================== --- trunk/octave-forge/extra/NaN/inst/xptopen.m (rev 0) +++ trunk/octave-forge/extra/NaN/inst/xptopen.m 2012-04-02 18:16:48 UTC (rev 10134) @@ -0,0 +1,41 @@ +% XPTOPEN read of several file formats and writing of the SAS Transport Format (*.xpt) +% Supported are ARFF, SAS-XPT and STATA files. +% XPTOPEN is a mex-file and must be compiled before use. +% More detailed help can be obtained by the command +% xptopen +% without an additional argument +% +% X = xptopen(filename) +% X = xptopen(filename,'r') +% read file with filename and return variables in struct X +% +% X = xptopen(filename,'w',X) +% save fields of struct X in filename. +% +% The fields of X must be column vectors of equal length. +% Each vector is either a numeric vector or a cell array of strings. +% The SAS-XPT format stores Date/Time as numeric value counting the number of days since 1960-01-01. + +% This program is free software; you can redistribute it and/or modify +% it under the terms of the GNU General Public License as published by +% the Free Software Foundation; either version 3 of the License, or +% (at your option) any later version. +% +% This program is distributed in the hope that it will be useful, +% but WITHOUT ANY WARRANTY; without even the implied warranty of +% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +% GNU General Public License for more details. +% +% You should have received a copy of the GNU General Public License +% along with this program; If not, see <http://www.gnu.org/licenses/>. + + +% $Id$ +% Copyright (C) 2010,2011,2012 by Alois Schloegl <alo...@is...> +% This is part of the NaN-toolbox. For more details see +% http://pub.ist.ac.at/~schloegl/matlab/NaN/ + + +if exist('xptopen','file')~=3 + error('xptopen.mex is not compiled') +end; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |