|
|
发表于 2016-4-7 13:57:13
|
显示全部楼层
你用下面代码输出就知道了* ?# T, _2 ]& }9 `% j$ l4 Y
do+ X. t2 T( N7 T% ] U3 ]
seedTab.create;
* E+ A4 c# H' u# H2 ~4 w3 R* s seedTab.writeRow(1,1,0,1,"Size of demand");-- stream 1 = stream 2
. C3 N5 h+ c2 f& M seedTab.writeRow(1,2,1,0,"Interarrival time of customers");0 _! G4 o" T1 f0 V, b! j* h5 Y
seedTab.writeRow(1,3,1,1,"Lead time");5 h9 x( ^8 p. ^8 L' B
print seedTab[3,2];
: J" R8 V3 a6 [( E7 S! |. t& C! G3 t
-- ……
' q7 }' I8 G9 M+ x5 p# R7 Rend;
1 R" O" C9 a) t* z, Z
" p# {7 Y5 k, v G1 |4 A/ r<Path>.writeRow(Column:<any>, Row:<any>, Value:<any> [,Value:<any>, ..., Value:<any>]);7 @+ @3 i# s& z% Y/ d# ~
这个说的也很清楚
* a2 y7 K) }5 N* [! ywriteRow(1,1,0,1,"Size of demand") 就是从 第一列 第一行开始 依次按排写入 0,1,"Size of demand" |
|