


% May need to compile the following mex files. mvprod (matrix-vector product on restricted support) realnoiselet (noiselet transform for random sampling of images) Wavelet transform (fwt, fwt2, ifwt, ifwt2, ...)


0001 %% May need to compile the following mex files. 0002 % mvprod (matrix-vector product on restricted support) 0003 % realnoiselet (noiselet transform for random sampling of images) 0004 % Wavelet transform (fwt, fwt2, ifwt, ifwt2, ...) 0005 0006 mname = mfilename; 0007 mpath = mfilename('fullpath'); 0008 mdir = mpath(1:end-length(mname)); 0009 cd(mdir); 0010 0011 cd utils 0012 disp('Compiling mvprod.c'); 0013 mex mvprod.c 0014 0015 cd utils_Wavelet 0016 Compile_FWT 0017 cd .. 0018 0019 cd utils_meas 0020 disp('Compiling realnoiselet.c'); 0021 mex realnoiselet.c 0022 0023 disp('Done compiling!'); 0024 0025 cd(mdir);