- Timestamp:
- 08/22/09 10:26:03 (15 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
library/utia_legacy/ticket_12/test_str.m
r572 r574 2 2 3 3 A=rand(2); 4 [L 1,D1]=ldform(A);4 [L0,D0]=ldform(A); 5 5 B=rand(2); 6 [L 2,D2]=ldform(A+B);6 [L1,D1]=ldform(A+B); 7 7 8 % structure estimation 8 % structure estimation - copied form facstr 9 9 belief = 2; % default belief 10 10 nbest = 1; % nbest: how many regressors are returned 11 11 nrep = 5; % nrep: number of random repetions of structure estimation 12 lambda = 0.9; 12 lambda = 0.9; 13 13 k=2; 14 14 15 [o1,o2,o3]=straux1(L1,D1,10,L2,D2,20, belief, nbest, nrep, lambda, k); 15 % [strout, rgrsout, statistics] = 16 % straux1(L, d, nu, L0, d0, nu0, belief, nbest, max_nrep, lambda, order_k); 17 [o1,o2,o3]=straux1(L1,D1,20, L0, D0, 10, belief, nbest, nrep, lambda, k);