DADiSP Worksheet Functions > Function Categories > Generated Series > GVALARRAY
Creates an array of all the same real value.
GVALARRAY(val, numrows, numcols)
val |
- |
A real, the value for the array |
numrows |
- |
An integer. The number of output rows. |
numcols |
- |
Optional. An integer, the number of output columns. Defaults to 1. |
A series or array.
gvalarray(12.5, 3, 1)
returns the series {12.5, 12.5, 12.5}
gvalarray(12.5, 3, 3)
returns the 3x3 array:
{{12.5, 12.5, 12.5},
{12.5, 12.5, 12.5},
{12.5, 12.5, 12.5}}
gvalarray(1.0, 3, 3) + i * gvalarray(2.0, 3, 3)
returns the 3x3 complex array:
{{1 + 2i, 1 + 2i, 1 + 2i},
{1 + 2i, 1 + 2i, 1 + 2i},
{1 + 2i, 1 + 2i, 1 + 2i}}
GVALARRAY only excepts a real value.