|
|
发表于 2016-4-7 13:57:13
|
显示全部楼层
你用下面代码输出就知道了
- o& N# ~& N1 B6 g( [do
2 J# B) ]: T; o4 | seedTab.create; N, b5 c5 {# U. t. j, \
seedTab.writeRow(1,1,0,1,"Size of demand");-- stream 1 = stream 22 Y* O2 z) T/ [- v* N5 L
seedTab.writeRow(1,2,1,0,"Interarrival time of customers");$ F, P$ m' y9 e7 v- z6 @+ w/ q" D' s
seedTab.writeRow(1,3,1,1,"Lead time");& t8 z- N5 I' u, d7 |
print seedTab[3,2];
1 U x* ~! K$ N7 V0 y
: `8 L2 F" H8 U1 }-- ……
/ J* }2 V' ]: \. Hend;
; h) v, Z8 z2 d3 \4 t. X
) I( ^4 g; g5 S c ^/ w<Path>.writeRow(Column:<any>, Row:<any>, Value:<any> [,Value:<any>, ..., Value:<any>]);
`1 R& n: A2 {9 z/ }这个说的也很清楚 # r$ y1 ^5 Z0 p# t% Q. R% w
writeRow(1,1,0,1,"Size of demand") 就是从 第一列 第一行开始 依次按排写入 0,1,"Size of demand" |
|