Patrick Roland wrote:
I'm comparing two code snippets. In Mata:
mata
timer_on(1)
M = rnormal(2000,2000,0,1)
J = cholinv(M)
timer_off(1)
timer()
end
In MATLAB:
tic;
M = normrnd(0,1,2000,2000);
J = inv(M);
toc;
I find that MATLAB is about 20 times faster (1.5 seconds vs 30
seconds). Is there something I'm missing here, or is MATLAB just much
faster at matrix inversion? I'd much prefer to use Mata because of
integration with Stata, but if the speed difference is going to be on
this order then MATLAB is more attractive.
Any input here is appreciated.
--------------------------------------------------------------------------------
Is -cholinv()- the Mata equivalent of MATLAB's inv()?
Mata's -invsym()- is more than 100 times faster than its -cholinv()- on my
ancient laptop.
Joseph Coveney
. clear *
. set more off
.
. mata:
------------------------------------------------- mata (type end to exit) ------
: M = rnormal(2000,2000,0,1)
: timer_on(1)
: J = cholinv(M)
: timer_off(1)
:
: timer_on(2)
: J = invsym(M)
: timer_off(2)
: timer()
--------------------------------------------------------------------------------
timer report
1. 116 / 1 = 116.227
2. .971 / 1 = .971
--------------------------------------------------------------------------------
:
: end
--------------------------------------------------------------------------------
.
. exit
end of do-file
*
* For searches and help try:
* http://www.stata.com/help.cgi?search
* http://www.stata.com/support/statalist/faq
* http://www.ats.ucla.edu/stat/stata/