Artifact d2d86013f230a98d52fbeb1d417e8191453a34640bbe78a5f843599a98672ee0:
- Executable file mtt/lib/examples/Simulation/BigHeatedRod/time_svdlu.m — part of check-in [af3953deae] at 2021-03-01 11:39:42 on branch master — Cleanup repository after cvs2git conversion. (user: jeff@gridfinity.com, size: 222) [annotate] [blame] [check-ins using] [more...]
- Executable file mttroot/mtt/lib/examples/Simulation/BigHeatedRod/time_svdlu.m — part of check-in [3fd9d6efa9] at 2000-12-28 18:17:57 on branch origin/master — To RCS (user: gawthrop@users.sourceforge.net, size: 222) [annotate] [blame] [check-ins using]
function [N,Ts,Tl]=time_svdlu; N=[100:100:700]; Ts=[]; Tl=[]; for n=N n M=rand(n,n); ts=time; svd(M); ts=time-ts tl=time; lu(M); tl=time-tl Ts=[Ts,ts]; Tl=[Tl,tl]; endfor; endfunction;