view tests/testLstsq.m @ 25:dd0e78b5bb13

Added .squeeze() in GAP function to avoid strange error in numpy.delete(), which wasn't raised on my laptop but was raised on octave
author nikcleju
date Wed, 09 Nov 2011 00:55:45 +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