Method RandomNormal
RandomNormal(TensorFloat, float, float, float?)
Generates an output tensor of a given shape with random values in a normal distribution with given mean and scale, and an optional seed value.
Declaration
void RandomNormal(TensorFloat O, float mean, float scale, float? seed)
Parameters
| Type | Name | Description |
|---|---|---|
| TensorFloat | O | The output tensor to be computed and filled. |
| float | mean | The mean of the normal distribution to use to generate the output. |
| float | scale | The standard deviation of the normal distribution to use to generate the output. |
| float? | seed | The optional seed to use for the random number generation. If this is |