Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
col(B)=pattern(col(c), 2, 3); //data source, value repeat count, sequence repeat count
col(B)=uniform(30, col(A)); //randomly choose 30 elements from col(A) to fill col(B)

...

Range Notation Improvements

  • SupportĀ Variables for Row

...

  • SubrangeĀ Notation:
Code Block
int a = 1;
int b = 12;
range rr=col(1)[a:b];
  • SupportĀ Range Declaration for Local Loose Dataset:
Code Block
dataset ds1,ds2; 
range rngld1=[??]!ds1;
range rngld2=[??]!ds2[10:15];  
range aa=1!1, bb=2[10:15];  //Given col(a)&col(b) is filled with row numbers: 
rngld1=aa;
rngld2=bb;
  • preserve double quotes:
Code Block
range r1 = 1!; //First sheet in the activated workbook
range r2 = "1!"; //Column with long name "1!"

New Added System Variables

...