Difference between revisions of "Fill Array"

From MultiCharts
Jump to navigation Jump to search
Line 2: Line 2:
 
   
 
   
 
== Usage ==
 
== Usage ==
<pre>Fill_Array(ArrayName,Value)</pre>  
+
<poem>Fill_Array(ArrayName,Value)</poem>  
  
 
Where:  
 
Where:  

Revision as of 14:42, 28 October 2019

Assigns a specified value to each element of the specified one-dimensional array.

Usage

<poem>Fill_Array(ArrayName,Value)</poem>

Where:

ArrayName - an expression specifying the name of an array
Value - a value to be assigned to each element of the array

Example

Assign a value of True to each element of Array1:

Fill_Array(Array1,True);