LabTalk里有一个概念很重要:Range Notation.
// see what this code does?
newbook; // create a new workbook
col(1)={1:2:32};
range rr=col(1)[3:7]; // range notation
col(2) = rr;
使用range notation的一个好处是,一旦定义,可在不同的worksheet ( ... ) 里使用:要知道,每个worksheet里都有重复索引的列!
---------- 严禁转载 ----------