view tests/testLstsq.m @ 31:829bf04c92af

Enabled fine step of 0.05 for delta and rho
author nikcleju
date Thu, 10 Nov 2011 22:48:39 +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