view 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
line wrap: on
line source
% test how much time solving a system takes in Matlab

clear all
close all

load testLstsq

tic
for i = 1:nruns
    %A \ b;
    svd(A);
end
toc