MinVal
Result = MinVal(Value1, Value2)
 
Parameters:

    Value1 = First value you wish to compare
    Value2 = Second value you wish to compare
Returns:

    Result = The smaller value of the two
 

      The MinVal() function calculates the min value (smallest value) between a pair of values.



FACTS:


     * MinVal returns the min value as a Integer

     * MinVal is equal to the following code fragment

  
Function MinValue(Value1#,Value2#)
  If Value1#<Value2#
     
     Result=Value1#
  Else
     Result=Value2#
  EndIf
EndFunction Result
  






Mini Tutorial:


      This example uses of the MinVal function to display the smallest of the two values.

  
  
; Create two variables to compare
  Value1#=100.34
  Value2#=200.01
  
;display the min value of the pair as a Integer
  Print MinVal(Value1#,Value2#)
  
;display the min value of the pair as a Float
  Print MinVal#(Value1#,Value2#)
  
;display the Max value of the pair as a Integer
  Print MaxVal(Value1#,Value2#)
  
;display the min value of the pair as a Float
  Print MaxVal#(Value1#,Value2#)
  
; Display the Screen and wait for the user to press a key
  Sync
  WaitKey
  



This example would output.

  
  100
  100.34
  200
  200.01
  

 
Related Info: Comparisons | if | MaxVal | MaxVal# | MidPoint | MinVal# | SwapIfLower :
 


(c) Copyright 2002 - 2024 - Kevin Picone - PlayBASIC.com