Difference between revisions of "Manuals/calci/ARRAYMAKE"

From ZCubes Wiki
Jump to navigation Jump to search
(Created page with "<div style="font-size:30px">'''ARRAYMAKE()'''</div><br/> *The parameter can me any integer values. ==Description== *This function makes an array with the values passed in. *T...")
 
 
(5 intermediate revisions by the same user not shown)
Line 14: Line 14:
 
*The third parameter indicates the number of times.
 
*The third parameter indicates the number of times.
 
*So it will create the array with the specified number of rows,columns and number of times with the number "0".
 
*So it will create the array with the specified number of rows,columns and number of times with the number "0".
 +
*This function will return the result as null when the given parameters are non numeric.
  
 
==Examples==
 
==Examples==
 
#ARRAYMAKE(4) = 0  0  0  0
 
#ARRAYMAKE(4) = 0  0  0  0
#ARRAYMAKE(3,2)  
+
#ARRAYMAKE(3,2)
0  0\
+
<math>\begin{matrix}
0   0\
+
0 & 0 \\
0   0\
+
0 & 0 \\
#ARRAYMAKE(3,2,4)
+
0 & 0  
0  0  0 0   0  0  0  0\
+
\end{matrix}</math>
0  0  0  0  0  0  0    0\
 
0  0  0  0  0  0  0  0
 
  
 +
3. ARRAYMAKE(3,2,4)
  
==
+
<math>\begin{matrix}
 +
0 & 0  & 0 & 0 & 0 & 0  & 0 & 0\\
 +
0 & 0  & 0 & 0 & 0 & 0  & 0 & 0\\
 +
0 & 0  & 0 & 0 & 0 & 0  & 0 & 0\\
 +
\end{matrix}</math>
 +
 
 +
==See Also==
 +
*[[Manuals/calci/ARRAYIFY | ARRAYIFY]]
 +
*[[Manuals/calci/ELEMENTINARRAY  | ELEMENTINARRAY ]]
 +
*[[Manuals/calci/ARRAY  | ARRAY]]
 +
 
 +
==References==
 +
*[http://data8.org/fa16/ref.html Array]
 +
 
 +
*[[Z_API_Functions | List of Main Z Functions]]
 +
 
 +
*[[ Z3 |  Z3 home ]]

Latest revision as of 04:53, 5 March 2020

ARRAYMAKE()


  • The parameter can me any integer values.

Description

  • This function makes an array with the values passed in.
  • The parameters can be any values.
  • We can use the numeric values to create an array.
  • There are three types of arrays:
    • Indexed arrays - Arrays with numeric index
    • Associative arrays - Arrays with named keys
    • Multidimensional arrays - Arrays containing one or more arrays
  • In ARRAYMAKE(),the first parameter indicates the number of rows.
  • The second Parameter indicates the number of columns.
  • The third parameter indicates the number of times.
  • So it will create the array with the specified number of rows,columns and number of times with the number "0".
  • This function will return the result as null when the given parameters are non numeric.

Examples

  1. ARRAYMAKE(4) = 0 0 0 0
  2. ARRAYMAKE(3,2)

3. ARRAYMAKE(3,2,4)

See Also

References