Hej Jesper,
hm, I still don't know how that would work. My Mata code is
mata
m_all = st_matrix("all")
nom = m_all[1...,2]
denom = m_all[1...,3]
denom = (denom:/denom)-denom
lr = nom :/ denom
out = m_all[1...,1], lr, m_all[1...,4], m_all[1...,5]
end
and I'd like to turn "out" into data format.
Any ideas?
Uli
-----Original Message-----
From: [email protected] on behalf of Jesper Kj�r Hansen
Sent: Fri 3/3/2006 1:02 PM
To: [email protected]
Subject: st: RE: How to convert a MATA matrix into a STATA matrix?
> can anybody tell me how to convert a matrix generated in MATA
> into STATA format?
>
> What I am looking for is hence the reverse of st_matrix.
>
> What I would like to ultimately do is to convert my MATA
> matrix into data (like "svmat" for STATA matrics).
>
>
> Best regards,
>
> UK
>
Ulrich,
as far as I can see, you can both obtain and put matrices using st_matrix().