Rev | Line | |
---|
[3] | 1 | function tma_unmix |
---|
| 2 | |
---|
| 3 | % (C) 2006 S.A. Verzakov, s.verzakov@tudelft.nl |
---|
| 4 | |
---|
| 5 | tm_do(tml_main_unmix); |
---|
| 6 | |
---|
| 7 | return |
---|
| 8 | |
---|
| 9 | function FuncList = tml_main_unmix |
---|
| 10 | |
---|
| 11 | FuncList.Title = 'HyperTools: Unixing'; |
---|
| 12 | FuncList.HideOnExec = 1; |
---|
| 13 | FuncList.DisableOnExec = 1; |
---|
| 14 | |
---|
| 15 | % the first column is a title, the second is a function handle |
---|
| 16 | FuncList.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 | |
---|
| 25 | return |
---|
| 26 | |
---|
Note: See
TracBrowser
for help on using the repository browser.