changeset 28:78c1e71cd269

(none)
author idamnjanovic
date Mon, 10 May 2010 14:59:59 +0000
parents ea0477392ed9
children a07585dff65c
files Problems/Pierre_Problem.m
diffstat 1 files changed, 5 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/Problems/Pierre_Problem.m	Mon May 10 10:56:38 2010 +0000
+++ b/Problems/Pierre_Problem.m	Mon May 10 14:59:59 2010 +0000
@@ -40,7 +40,7 @@
 
 %% prompt user for images %%
 
-%ask for source file name
+%   ask for source file name
 
 TMPpath=pwd;
 FS=filesep;
@@ -54,7 +54,7 @@
 src = double(src);
 end;
 
-%ask for target file name
+%   ask for target file name
 
 if ~ exist( 'trg', 'var' ) || isempty(trg)
 [filename,pathname] = uigetfile({'*.png;'},'Select a target image');
@@ -113,8 +113,9 @@
 data.blocksize=blocksize;
 data.maxval=maxval;
 
-% geting around out of memory problem when converting big matrix from
-% sparse to full... (check SMALL_solve function)
+%   keep coefficients matrix in sparse form and do not convert it to full.
+%   geting around out of memory problem when converting big matrix from
+%   sparse to full... (check SMALL_solve function)
 data.sparse=1;