Mercurial > hg > pycsalgos
annotate tests/testLstsq.m @ 39:0ff08ae833be
utils.py:
Mark the areas with less than 10% error in the figures.
Joined loadsavematrices() and loadshowmatrices() together in the same function loadmatrices()
author | nikcleju |
---|---|
date | Fri, 18 Nov 2011 15:12:34 +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 |