User Tools

Site Tools


en:arrays

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
en:arrays [2016/11/07 06:56]
admin
en:arrays [2020/04/21 18:29] (current)
admin
Line 2: Line 2:
 Arrays are allocated using the [[DIM|DIM]] command or re-sized using [[REDIM|REDIM]].  They may hold numeric or string data.  Access to specific elements in an array is accomplished by using square brackets along with the integer offset of the element, starting from zero.  Arrays may also be dimensioned and accessed using two dimensions.\\ Arrays are allocated using the [[DIM|DIM]] command or re-sized using [[REDIM|REDIM]].  They may hold numeric or string data.  Access to specific elements in an array is accomplished by using square brackets along with the integer offset of the element, starting from zero.  Arrays may also be dimensioned and accessed using two dimensions.\\
 [[arraylength|Array lengths]] may also be extracted using [?] [?,] and [,?] on the end of the array variable. [[arraylength|Array lengths]] may also be extracted using [?] [?,] and [,?] on the end of the array variable.
 +
 +By default arrays may be indexed using an integer in the range of 0 to array_length-1.  You may optionally change the numeric array index to a range of 1 to array_length by using the [[arraybase|ArrayBase]] statement.
  
 ==== Assigning values to an array ==== ==== Assigning values to an array ====
Line 45: Line 47:
 ==== Passing Arrays of Data to Builtin Functions and Statements ==== ==== Passing Arrays of Data to Builtin Functions and Statements ====
  
-When passing an array of data, like to the [[sound|sound]] statement, you must include an empty set of brackets [] after the variable name.  This was added to reduce the confusion between a regular variable and a variable containing an array of values.+When passing an array of data, like to the [[sound|sound]] statement, you may include an empty set of brackets [] after the variable name.  This was added to reduce the confusion between a regular variable and a variable containing an array of values.
  
 ==== History ==== ==== History ====
Line 51: Line 53:
 |1.99.99.57|added the fill assignment operator| |1.99.99.57|added the fill assignment operator|
 |1.99.99.72|added the array passing note| |1.99.99.72|added the array passing note|
 +|2.0.0.0|Added ability to change array base|
en/arrays.1478526999.txt.gz ยท Last modified: 2020/02/28 10:46 (external edit)