nway211

所属分类:matlab编程
开发工具:matlab
文件大小:226KB
下载次数:75
上传日期:2006-11-04 18:51:22
上 传 者wangyong0207
说明:  多维数据分析,有nPLS,PARAFAC,TURKER等
(multidimensional data analysis, nPLS, B6, and other TURKER)

文件列表:
nway211\ulsr.m (2868, 2002-03-05)
nway211\calcore.m (3184, 2002-03-05)
nway211\ckron.m (538, 2002-03-05)
nway211\cmatrep.m (667, 2002-03-05)
nway211\COMPLPOL.M (154, 2002-03-05)
nway211\contents.m (3799, 2004-01-13)
nway211\corcond.m (7376, 2004-01-13)
nway211\coredian.m (577, 2002-03-05)
nway211\coreswdn.m (1028, 2002-07-09)
nway211\corevarn.m (466, 2002-03-05)
nway211\def.mat (640, 2002-03-05)
nway211\demos.m (504, 2002-03-05)
nway211\derdia3.m (1918, 2002-03-05)
nway211\derswd3.m (2217, 2002-07-09)
nway211\dervar3.m (3239, 2002-03-05)
nway211\dtld.m (3398, 2002-03-05)
nway211\explcore.m (1709, 2002-03-05)
nway211\fac2let.m (1212, 2002-08-17)
nway211\fastnnls.m (1913, 2002-03-05)
nway211\fnipals.m (6534, 2002-03-05)
nway211\fnnls.m (2788, 2002-03-05)
nway211\getindxn.m (494, 2002-03-05)
nway211\gram.m (2488, 2002-03-05)
nway211\gsm.m (998, 2002-03-05)
nway211\info.xml (958, 2002-03-05)
nway211\ini.m (7916, 2002-03-26)
nway211\inituck.m (5981, 2002-03-05)
nway211\kr.m (1427, 2002-03-05)
nway211\maxdia3.m (4401, 2004-01-13)
nway211\maxswd3.m (3931, 2004-01-13)
nway211\maxvar3.m (4368, 2004-01-13)
nway211\missmean.m (1019, 2002-03-05)
nway211\missmult.m (930, 2002-03-05)
nway211\misssum.m (1197, 2002-03-05)
nway211\monreg.m (2338, 2002-03-05)
nway211\ncosine.m (2681, 2004-01-13)
nway211\ncrossdecomp.m (14877, 2004-01-13)
nway211\ncrossdecompn.m (17777, 2002-08-17)
nway211\ncrossreg.m (9958, 2004-01-13)
nway211\neye.m (1625, 2002-03-05)
... ...

IMPORTANT NOTES ON THE N-WAY TOOLBOX ver. 2.11 There are some important details that are necessary to know in order to be able to use the N-way toolbox properly. These are given here - please read carefully before using the toolbox. CONDITIONS The toolbox is freeware and may be used (but not modified) if proper reference is given to the authors. Preferably refer to C. A. Andersson and R. Bro. The N-way Toolbox for MATLAB. Chemom.Intell.Lab.Syst. 52 (1):1-4, 2000. or alternatively The N-way Toolbox for MATLAB ver. 2.11, http://www.models.kvl.dk/ R. Bro & C. A. Andersson Food Technology The Royal Veterinary and Agircultural University DK-1958 Frederiksberg Denmark WARRANTY In short, no guarantees, whatsoever, are given for the quality of this toolbox or for the consequences of its use. It is inevitable that there will be some bugs, but we have tried to test the algorithms thoroughly. WHERE DOES THE TOOLBOX WORK? The toolbox has been tested on matlab 6.5 in Windows XP only. The toolbox uses features that are not compatible with matlab 4.x, so if you have matlab 4.x you should use version 1.04 of this toolbox instead. SETTING UP THE TOOLBOX In order to install the toolbox, simply (extract and) copy the files to a directory (e.g. NWAY). After copying all files, go to the 'update' homepage in order to see if newer versions of individual files are available. Copy these files indiviually overwriting the old files. Make sure that the updates are copied after the main files. Make sure that the path ../nway is included in MATLAB's path. If you have e.g. the PLS_toolbox, some files are named identically. This may cause problems depending on which functions you use. If you want to use e.g. the parafac function from the N-way toolbox, you have to ensure that either the path to the N-way toolbox appears before the path to the PLS_toolbox or that you run matlab from the nway directory. In order to get help on what files are present in the toolbox type <> at the matlab command line (if nway is the name of the directory where you have the files. DATA INPUT Unlike, older matlab 4 compatible versions of this toolbox, the data are input directly as multi-way arrays. Hence, there is no need for the DimX used earlier for defining the size of the array. If you have a 10x8x100 array, X, that is held in a 10x(8*100) matrix, i.e. the old matrix format, you can convert to a three-way array by X = reshape(X,10,8,100); This is the format in which the data must be input to the functions. MODEL OUTPUT Also the output has changed in most cases in version 2. With the use of cell arrays, it is much easier to handle the output of a varying number of component matrices. Let the components of a three-way parafac model is held in a cell e.g. called Factors; e.g. arising from the call of a four-component model Factors = parafac(X,3); Then the first mode loadings are held in Factors{1}: A = Factors{1}; B = Factors{2}; C = Factors{3}; For a Tucker model such as [Factors,G]=tucker(X,[3 3 2]); the components are found similarly and G will be a 3x3x2 array. For a tri-PLS2 model (three-way X, two-way Y) two component sets are defined Xfactors - T=Xfactors{1}, Wj=Xfactors{2}, Wk = Xfactors{3} Yfactors - U=Yfactors{1}, Q=Yfactors{2} Instead of using the cell notation, it is possible to use the M-file FAC2LET (factors to letters) to extract components; e.g. [A,B,C] = fac2let(Factors); MISSING DATA For all algorithms the same flag is used for missing elements, namely NaN. If you have a data set, X, where missing elements are, e.g., designated by the number -9999, you can easily modify the data as X(find(X==-9999))=NaN*find(X==-9999); SUPPORT We are VERY interested in and dependent on feedback from the users. If you have problems running the toolbox please supply screendumps as well as version number of the toolbox, MATLAB, and operating system before contacting us. We will do the utmost to help overcoming the problems. In the rare event that the support required is very time-consuming we will have to charge for this service. The authors may be contacted by email: claus@andersson.dk (primarily Tucker and application/helper programs) rb@kvl.dk (primarily PARAFAC/N-PLS)

近期下载者

相关文件


收藏者