6 lines
92 B
Text
6 lines
92 B
Text
matrix a=J(20,20,0)
|
|
forv i=1/20 {
|
|
forv j=1/20 {
|
|
matrix a[`i',`j']=runiformint(1,20)
|
|
}
|
|
}
|