Difference between revisions of "ZCubes/Understanding Arrays in ZCubes"
Jump to navigation
Jump to search
(Created page with "==Understanding Arrays in ZCubes== <br/> This video demonstrates some of the array creation and manipulation features in ZCubes. A series of numbers can be made into an array...") |
(→Video) |
||
Line 8: | Line 8: | ||
<br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/> | <br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/> | ||
− | + | ==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 | Learn ZCubes ]] | <<[[Learn_ZCubes | Learn ZCubes ]] | ||
<br/> | <br/> | ||
© Copyright 1996-2020, ZCubes, Inc. | © Copyright 1996-2020, ZCubes, Inc. |
Revision as of 02:54, 19 March 2020
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
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.