Hi all,
Does anyone know why using the J(*,*,*) function results in a matrix that looks as if it is a triangular matrix? For example, typing
gives this:
| c1 c2 c3 c4 c5
-------------+-------------------------------------------------------
r1 | 10
r2 | 10 10
r3 | 10 10 10
r4 | 10 10 10 10
r5 | 10 10 10 10 10
Thank you,
Stan
Does anyone know why using the J(*,*,*) function results in a matrix that looks as if it is a triangular matrix? For example, typing
Code:
. matrix D = J(5,5,10) . matlist D
| c1 c2 c3 c4 c5
-------------+-------------------------------------------------------
r1 | 10
r2 | 10 10
r3 | 10 10 10
r4 | 10 10 10 10
r5 | 10 10 10 10 10
Thank you,
Stan
Comment