CreateRandomArray
Creates array with random values.
Syntax
C++
Python
def CreateRandomArray( *, inLength: int = 10, inMinValue: float = 0, inMaxValue: float = 10.0, inStep: float = 1.0, inSeed: int | None = None ) -> outArray: list[float]
Parameters
| Name | Type | Range | Default | Description | |
|---|---|---|---|---|---|
![]() |
inLength | int | 10 | Length of output array | |
![]() |
inMinValue | float | 0 | Minimal generated value | |
![]() |
inMaxValue | float | 10.0 | Maximal generated value | |
![]() |
inStep | float | 0.0001 - ![]() |
1.0 | Minimal difference between two generated values |
![]() |
inSeed | int | None | None | Random seed used to generate values | |
![]() |
outArray | list[float] |



