ZCubes/Understanding Arrays in ZCubes

From ZCubes Wiki
Revision as of 03:54, 19 March 2020 by Devika (talk | contribs) (→‎Video)
Jump to navigation Jump to search

Understanding Arrays in ZCubes


This video demonstrates some of the array creation and manipulation features in ZCubes. A series of numbers can be made into an array and you can use functions to obtain and manipulate data in rows, columns or cells. This also demonstrates the use of the ".." operator. Go ahead and play with arrays.

Video


Understanding Arrays in ZCubes














Code

a=(1..100);
b=a.parts(10);
b=a.slice(1,10);
b=a.slice(50,66);
b=a.parts(10)
SUM(b);
b.$(SIN);
b.$(x=>x^2);
b.$$(SUM);
b.$$$(SUM);
b.columns();
b.columns(3);
b.columns(1..3);
b.columns(0..9..2);
b.rows(0..9..2);

<< Learn ZCubes
© Copyright 1996-2020, ZCubes, Inc.