|
|
发表于 2016-4-7 13:57:13
|
显示全部楼层
你用下面代码输出就知道了
* w9 I5 i( J: G9 Q% F; Bdo( L5 g7 r; j( F1 E
seedTab.create;; N' k k" B, P/ S0 A, t
seedTab.writeRow(1,1,0,1,"Size of demand");-- stream 1 = stream 2
3 u8 K- b5 [8 ?3 l! |: T seedTab.writeRow(1,2,1,0,"Interarrival time of customers");
$ R) C9 M2 e7 D. D seedTab.writeRow(1,3,1,1,"Lead time");
( w2 c; u0 P8 `) e- D% O7 x print seedTab[3,2];
1 k' n z0 {3 V+ R
7 k" f0 M% q: T# S. `6 d-- ……
/ y7 ` f4 _! _3 X# l. \) X* Cend;
/ }* {7 Y7 s) n- K8 ^2 R
9 t' r% w' u% N" A) @<Path>.writeRow(Column:<any>, Row:<any>, Value:<any> [,Value:<any>, ..., Value:<any>]);: f, t; t: R3 g7 _, i( F0 c( s; n
这个说的也很清楚
7 M0 {" Y6 x2 w0 u2 d; c1 }writeRow(1,1,0,1,"Size of demand") 就是从 第一列 第一行开始 依次按排写入 0,1,"Size of demand" |
|