annotate tests/testLstsq.m @ 54:527b0f6a9ffc

Changed dictionary structure
author nikcleju
date Wed, 14 Dec 2011 14:37: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