MIN: minimum of scalar arguments, or of array (f)
⇒Home
⇒Contents
⇒more on Programming
(⇒Optional Keywords Syntax)
⇒ Example of a MIN call in "Knapsack_problem/Unbounded" (RosettaCode)
Bookmarks:
⇒minimum value
MIN returns the
minimum value
of the scalar arguments or the array argument:
result = MIN( x, y, z, ...)
! x, y, z are numeric scalars, e.g.:
smallest = MIN( 4, -3.1,
EXP
(1) )
! sets smallest to -3.1
REAL
:: vec(5)
vec =
RAN
( 100, 10)
! e.g. 96.00351636 90.99435447 108.1637875 91.95317195 90.80626762
result = MIN(vec)
! set to 90.80626762
MINLOC
is to find the
location of the minimum
, e.g.:
loc = MINLOC( vec )
! is set to 5
analogous functions are Max and MaxLOC
How your donation will be used, and how to get a HicEst key code in return
©2000-2010 Georg Petrich, HicEst Instant Prototype Computing. All rights reserved.
Impressum