view tests/testLstsq.m @ 20:45255b0a6dba

2011 11 08 Worked from school
author nikcleju
date Tue, 08 Nov 2011 14:43:29 +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