comparison bugs.m @ 90:6fa65aec8742

some bugs I have found while running the examples :)
author Raja Giryes
date Tue, 12 Apr 2011 16:37:11 +0300
parents
children 8a93741e416e
comparison
equal deleted inserted replaced
86:f6cc633fd94b 90:6fa65aec8742
1 Bugs by Raja Giryes:
2 Using the tollbox on windows with Matlab R2010b:
3 bug1:
4 running SMALL_solver_test_Audio.m
5 I get:
6 Starting solver SMALL_cgp...
7 Solver SMALL_cgp finished task in 251.208410 seconds (cpu time).
8 Solver SMALL_cgp finished task in 159.905633 seconds (tic-toc time).
9
10 Starting solver SolveBP...
11 ??? Error using ==> eval
12 Undefined function or method 'SolveBP' for input arguments of type
13 'function_handle'.
14
15 Error in ==> SMALL_solve at 46
16 y = eval([solver.name,'(SparseLab_A, b, n,',solver.param,');']);
17
18 Error in ==> SMALL_solver_test_Audio at 93
19 SMALL.solver(i)=SMALL_solve(SMALL.Problem, SMALL.solver(i));
20
21 running SMALL_solver_test.m
22 I get:
23 Starting solver SMALL_cgp...
24 Solver SMALL_cgp finished task in 2.839218 seconds (cpu time).
25 Solver SMALL_cgp finished task in 2.821443 seconds (tic-toc time).
26
27 Starting solver SolveOMP...
28 ??? Error using ==> eval
29 Undefined function or method 'SolveOMP' for input arguments of type
30 'function_handle'.
31
32 Error in ==> SMALL_solve at 46
33 y = eval([solver.name,'(SparseLab_A, b, n,',solver.param,');']);
34
35 Error in ==> SMALL_solver_test at 113
36 SMALL.solver(i)=SMALL_solve(SMALL.Problem, SMALL.solver(i));
37