# HG changeset patch # User idamnjanovic # Date 1277809655 0 # Node ID 6521a7c2b93c1dfcdd4919c89d10bcbf2f73d0fa # Parent 1b63e6a201a24fb9530ae716f02a81e4627694eb diff -r 1b63e6a201a2 -r 6521a7c2b93c util/SMALL_plot.m --- a/util/SMALL_plot.m Tue Jun 29 11:06:48 2010 +0000 +++ b/util/SMALL_plot.m Tue Jun 29 11:07:35 2010 +0000 @@ -20,7 +20,7 @@ for i =1:m subplot(m,n, (i-1)*n+1); plot(1:length(SMALL.solver(i).solution), SMALL.solver(i).solution, 'b') - title([ SMALL.solver(i).name,'(', SMALL.solver(i).param,')']) + title(sprintf('%s(%s) in %.2f s', SMALL.solver(i).name, SMALL.solver(i).param,SMALL.solver(i).time)) xlabel('Coefficient') % Plot reconstructed signal against original @@ -32,4 +32,5 @@ %legend(SMALL.solver(i).name,'Original signal',0); title('Reconstructed and original signals'); end + end end