view tests/testLstsq.m @ 7:9079a9f7c4cf

More tests
author nikcleju
date Sat, 05 Nov 2011 11:41:38 +0000
parents 4a4e5204ecf5
children 64fbc37c8c06
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;
end
toc