I have the following code:
proc iml;
use prepped;
read all;
hstar = j(200000,1,.);
do i = 1 to 2;
do j = 1 to 6;
hstar[100000*(i-1)+j] = hhat;
end;
end;
quit;
The line that reads
hstar[100000*(i-1)+j] = hhat;
gives the following error:
ERROR: (execution) Matrices do not conform to the operation.
operation : [ at line 124 column 9
operands: HSTAR, _TEM1003, HHAT
HSTAR 200000 rows 1 col (numeric)
_TEM1003 1 row 1 col (numeric)
HHAT 200000 rows 1 col (numeric)
statement: ASSIGN at line 124 column 4
Can anybody help with this?
Thanks.