ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Standard functions / Numeric values functions / Statistical functions
  • Finding out the minimum value for a series of values
Finding out the minimum value for a series of values
The following code is used to find out the minimum value of the elements in row 3.
We assume that the matrix is already created and initialized.
// -- Click code on BTN_Min
// Declare the variables
ResMin is real
// Minimum value of elements in row 3
ResMin = StatMin("MyMatrix", 3, False)
// Error on StatMin?
IF StatError() = 0 THEN
// Display the result
Info("The minimum value is: " + ResMin)
ELSE
// Display the error message
Error(ErrorInfo(errMessage))
END
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help