annotate tests/testLstsq.m @ 46:88f0ebe1667a

Finished NESTA implementation. Not tested yet
author nikcleju
date Tue, 29 Nov 2011 22:06:20 +0000
parents 64fbc37c8c06
children
rev   line source
nikcleju@5 1 % test how much time solving a system takes in Matlab
nikcleju@5 2
nikcleju@5 3 clear all
nikcleju@5 4 close all
nikcleju@5 5
nikcleju@5 6 load testLstsq
nikcleju@5 7
nikcleju@5 8 tic
nikcleju@5 9 for i = 1:nruns
nikcleju@8 10 %A \ b;
nikcleju@8 11 svd(A);
nikcleju@5 12 end
nikcleju@5 13 toc