从电子表格中读数据
一旦模型连接到电子表格上,利用SheetRead 命令,ranges 可以被读进多维数组或集合中。
数组的例子:
/* in .mod file */
string city[0..2] = …;
/* in .dat file */
city from SheetRead(sheet,"C2:E2")
/* in .mod file */
float cost[0..2][0..2] = …;
/* in .dat file */
cost from SheetRead(sheet,"C3:E5");
*
2021-12-14 16:40:31
926KB
软件接口
1