On Sun, 2 Dec 2012, Marcin Błażejowski wrote:
Hi,
suppose we have trivial code:
---
matrix foo = zeros(2,2)
print foo
---
The obvious result is:
---
foo (2 x 2)
0 0
0 0
---
But is it possible to get only the numbers (without foo (2 x 2))?
How about printf, as in
<hansl>
matrix foo = zeros(2,2)
printf "%8g", foo
</hansl>
?
-------------------------------------------------------
Riccardo (Jack) Lucchetti
Dipartimento di Scienze Economiche e Sociali (DiSES)
Università Politecnica delle Marche
(formerly known as Università di Ancona)
r.lucchetti(a)univpm.it
http://www2.econ.univpm.it/servizi/hpp/lucchetti
-------------------------------------------------------