ZCubes/Understanding Arrays in ZCubes

Revision as of 01:29, 11 March 2021 by Jayaram (talk | contribs) (→‎Code)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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);




© Copyright 1996-2021, ZCubes, Inc.