1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
| 514 proc iml;
NOTE: IML Ready
515 M=J(2,1);
516 do i=1 to 200 by 100;
517 %test(i,cst);
518 M[i,1]=cst;
519 print((M[i,1]));
520 end;
ERREUR: (execution) Invalid subscript or subscript out of range.
operation : [ at line 518 column 2
operands : M, I, *LIT1015, CST
M 2 rows 1 col (numeric)
1.0224495
1
I 1 row 1 col (numeric)
101
*LIT1015 1 row 1 col (numeric)
1
CST 1 row 1 col (numeric)
1.10215
statement : ASSIGN at line 518 column 1
521
522
523 quit;
NOTE: Exiting IML.
NOTE: Le Système SAS a interrompu le traitement de cette étape en raison d'erreurs.
NOTE: La procédure IML a utilisé (Durée totale du processus) :
temps réel 0.05 secondes
temps processeur 0.06 secondes |
Partager