source: hypertools/hypertools/tma_unmix.m

Last change on this file was 3, checked in by dtax, 15 years ago

Hypertools, first

File size: 530 bytes
RevLine 
[3]1function tma_unmix
2
3% (C) 2006 S.A. Verzakov, s.verzakov@tudelft.nl
4
5tm_do(tml_main_unmix);
6
7return
8
9function FuncList  = tml_main_unmix
10
11FuncList.Title         = 'HyperTools: Unixing';
12FuncList.HideOnExec    = 1;
13FuncList.DisableOnExec = 1;
14
15% the first column is a title, the second is a function handle
16FuncList.List = {...
17  ...
18  'OPA/ALS',         @tmr_opa; ...
19  'SIMPLISMA/ALS',   @tmr_simplisma; ...
20  'PCA/VARIMAX/ALS', @tmr_varimax; ...
21  'MAF/ALS',         @tmr_maf; ...
22  'MNF/ALS',         @tmr_mnf; ...
23};
24
25return
26
Note: See TracBrowser for help on using the repository browser.