21 lines
235 B
Markdown
21 lines
235 B
Markdown
# MathMax
|
||
|
||
Returns the maximum value of all array elements.
|
||
|
||
```
|
||
double MathMax(
|
||
const double& array[] // array of values
|
||
)
|
||
|
||
```
|
||
|
||
Parameters
|
||
|
||
array[]
|
||
|
||
[in] Array of values.
|
||
|
||
Return Value
|
||
|
||
The maximum value.
|