view tests/testLstsq.m @ 8:64fbc37c8c06

Added SL0 matlab test and data
author nikcleju
date Sat, 05 Nov 2011 20:40:22 +0000
parents 4a4e5204ecf5
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