FLOAT_ARRAY(Num)
Returns a float array of size Num
FloatArray FLOAT_ARRAY(Integer Num)
Num - Integer value greater than zero. If it is not an integer type, it is implicitly converted to an integer type.
Float array of size Num
> A = FLOAT_ARRAY(3)
> A[0] = 3
> PRINT A
{ 3.000000, 0.000000, 0.000000 }