view tests/testLstsq.m @ 66:ee10ffb60428

Implemented projection on an ellipsoid and modified SL0 accordingly.
author Nic Cleju <nikcleju@gmail.com>
date Mon, 23 Apr 2012 10:55:49 +0300
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