changeset 132:b17f690df281

plot function small change
author Ivan Damnjanovic lnx <ivan.damnjanovic@eecs.qmul.ac.uk>
date Mon, 11 Jul 2011 11:01:56 +0100
parents d8783debe482
children 10343fb66448 5a5e54f733c9
files util/SMALL_plot.m
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/util/SMALL_plot.m	Mon Jun 13 15:04:31 2011 +0100
+++ b/util/SMALL_plot.m	Mon Jul 11 11:01:56 2011 +0100
@@ -30,8 +30,8 @@
   for j=2:n
       
       subplot(m,n,(i-1)*n+j); plot(1:length(SMALL.solver(i).reconstructed(:,j-1)), SMALL.solver(i).reconstructed(:,j-1)  ,'b.-',  1:length(SMALL.Problem.signal(:,j-1)), SMALL.Problem.signal(:,j-1),'r--')
-          %legend(SMALL.solver(i).name,'Original signal',0);
-              title('Reconstructed and original signals');
+          %legend(SMALL.solver(i).name,'Original signal',0,'Location','SouthOutside','Interpreter','none');
+               title(sprintf('%s(%s) in %.2f s signal %d', SMALL.solver(i).name, SMALL.solver(i).param,SMALL.solver(i).time,n-1),'Interpreter','none')
   end
   end
 end