|
|
发表于 2016-4-7 13:57:13
|
显示全部楼层
你用下面代码输出就知道了; ]6 n* s, s1 H1 d0 w) y
do
: b0 h$ X7 M' l- W1 C seedTab.create;
8 g: H8 C. Y7 i( c* \& C: } seedTab.writeRow(1,1,0,1,"Size of demand");-- stream 1 = stream 2
( T: H" e9 U5 e; \+ Z+ g6 R, l; k seedTab.writeRow(1,2,1,0,"Interarrival time of customers");
0 j8 S/ }) ^. D* G seedTab.writeRow(1,3,1,1,"Lead time");
2 P# Z4 y, Q! b- `, D/ B, n6 n2 w" { print seedTab[3,2];
. Y! p3 y( l1 W1 o8 b o8 w0 N5 T
4 n. C+ b8 t4 ^7 {. J4 u5 }# l+ u-- ……
" m# D6 C$ c' N/ n% m- I# O8 pend;
r( i4 I. {4 h
9 I2 P% ~7 E& h( v2 [<Path>.writeRow(Column:<any>, Row:<any>, Value:<any> [,Value:<any>, ..., Value:<any>]);8 F9 y6 p' t. ~5 ^: s
这个说的也很清楚 - W5 v* N" J8 }3 R% G
writeRow(1,1,0,1,"Size of demand") 就是从 第一列 第一行开始 依次按排写入 0,1,"Size of demand" |
|