Statalist


[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

st: use Mata to calculate the eigenvalues of the matrix


From   [email protected]
To   [email protected]
Subject   st: use Mata to calculate the eigenvalues of the matrix
Date   Sun, 08 Mar 2009 14:17:45 -0400

Dear All

I am tring to use Mata to calculate the eigenvalues of the matrix, but there is some problems. First, I installed the moremata package by Ben Jann. Then, when I type:

mata:
M = st_matrix("M")
lambda = J(cols(M), 4, .)
for(t=1; t<=cols(M); t++) {
mt = invvech(M[., t])
lambda[t, .] = symeigenvalues(mt)
}
lambda
end

The output shows:

               invvech():  3498  invalid vech
                 <istmt>:     -  function returned error
------------------------------------------------------------------------------------------------------------
r(3498);

.
. lambda
unrecognized command:  lambda
r(199);

.
. end
unrecognized command:  end
r(199);


if I type:
mata:
M = st_matrix("M")
lambda = J(cols(M), 4, .)
for(t=1; t<=cols(M); t++) {
mt = invvech(M[., t])
lambda[t, .] = symeigenvalues(mt)
}

the output shows:

               invvech():  3498  invalid vech
                 <istmt>:     -  function returned error
------------------------------------------------------------------------------------------------------------
r(3498);


Do you know where's the error of my codes?

Thanks!

Jingjing Li
University of Toronto



*
*   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/



© Copyright 1996–2024 StataCorp LLC   |   Terms of use   |   Privacy   |   Contact us   |   What's new   |   Site index