CreateRandomMatrix
Creates matrix with random values in closed interval.
Syntax
C++
Python
def CreateRandomMatrix( outMatrix: Matrix, /, *, inColumnCount: int = 10, inRowCount: int = 10, inMinValue: float = 0, inMaxValue: float = 10.0, inStep: float = 1.0, inSeed: int | None = None ) -> None
Parameters
| Name | Type | Range | Default | Description | |
|---|---|---|---|---|---|
![]() |
inColumnCount | int | 10 | Columns count of generated matrix | |
![]() |
inRowCount | int | 10 | Rows count of generated matrix | |
![]() |
inMinValue | float | 0 | Minimal generated value | |
![]() |
inMaxValue | float | 10.0 | Maximal generated value | |
![]() |
inStep | float | 0.0001 - ![]() |
1.0 | Minimal difference between two random values |
![]() |
inSeed | int | None | None | Random seed used to generate values | |
![]() |
outMatrix | Matrix |



