Random
double Random (double minimum, double maximum);
Purpose
Returns a random number between minimum and maximum.
Parameters
| Input | ||
| Name | Type | Description |
| minimum | double | The minimum value Random can return. Random will return a value between minimum and maximum. |
| maximum | double | The maximum value Random can return. Random will return a value between minimum and maximum. |
Return Value
| Name | Type | Description |
| result | double | The random number that is generated. This number will be between minimum and maximum. |
Additional Information
Library: Programmer's Toolbox
Include file: toolbox\toolbox.h
LabWindows/CVI compatibility: LabWindows/CVI 4.0 and later