Difference between revisions of "Manuals/calci/MIN"

From ZCubes Wiki
Jump to navigation Jump to search
 
(13 intermediate revisions by 4 users not shown)
Line 1: Line 1:
<div style="font-size:30px"> '''MIN(n1,n2,n3,..)''' </div><br/>
+
<div style="font-size:30px"> '''MIN()''' </div><br/>
*<math>n1,n2,n3…, </math> are the numbers.
+
*Parameters are any set of numbers.
 +
**MIN(), returns the minimum value in a list of arguments.
  
 
==Description==
 
==Description==
 
*This function gives the smallest number in a given set of values.
 
*This function gives the smallest number in a given set of values.
*In  <math> MIN(n1,n2,n3,…)</math> <math>n1</math> is required and <math> n2,n3….</math> ,are optional.  
+
*In  <math> MIN()</math>,First parameter is required and from the second parameter are optional.  
*Here <math> n1,n2,n3,...</math>, can be numbers, names, arrays or references that contain numbers.
+
*Here Parameters can be numbers, names, arrays or references that contain numbers.
 
*Also logical values and text representation can be valid when we are entering directly.
 
*Also logical values and text representation can be valid when we are entering directly.
 
*In a referred array only numbers are considered.Empty cells,logical values or text in the referred array are  not considered.  
 
*In a referred array only numbers are considered.Empty cells,logical values or text in the referred array are  not considered.  
*suppose the arguments contain no numbers then this gives the value as 0.  
+
*Suppose the arguments contain no numbers then this gives the value as 0.  
*This functon will return the result as error when any one of the argument is nonnumeric or the referred array cannot translated in to numbers.  
+
*This function will return the result as error when any one of the argument is non-numeric or the referred array cannot translated in to numbers.  
*suppose we want to consider the logical values in a referred array , we can include in the [[MINA]] function.
+
*suppose we want to consider the logical values in a referred array , we can include in the [[Manuals/calci/MINA | MINA  ]] function.
 +
 
 +
==ZOS==
 +
*The syntax is to calculate minimum number in the given set of numbers in ZOS is <math>MIN()</math>.
 +
**Parameters are any set of  numbers.
 +
*For e.g., MIN(2..10,-11..-4)
  
 
==Examples==
 
==Examples==
#MIN(10,15,28,87)=10
+
#=MIN(10,15,28,87)=10
#MIN(-5,-8,-15,0)=-15
+
#=MIN(-5,-8,-15,0)=-15
#MIN(0.45,0.265,0.314,0.121)=0.121
+
#=MIN(0.45,0.265,0.314,0.121)=0.121
#MIN(4,7,9,TRUE)=1
+
#=MIN(4,7,9,TRUE)=1
#MIN(4,7,9,FALSE)=0                              
+
#=MIN(4,7,9,FALSE)=0
5
+
 
8
+
==Related videos==
TRUE
 
MIN(B1:B3)=5
 
  
 +
{{#ev:youtube|jjFj92LdJAQ|280|center|MIN}}
  
 
==See Also==
 
==See Also==
Line 28: Line 33:
 
*[[Manuals/calci/MAX  | MAX ]]
 
*[[Manuals/calci/MAX  | MAX ]]
 
*[[Manuals/calci/MAXA  | MAXA ]]
 
*[[Manuals/calci/MAXA  | MAXA ]]
 +
 +
==References==
 +
[http://en.wikipedia.org/wiki/Minimum Minimum]
  
  
==References==
+
 
 +
*[[Z_API_Functions | List of Main Z Functions]]
 +
 
 +
*[[ Z3 |  Z3 home ]]

Latest revision as of 08:08, 3 June 2020

MIN()


  • Parameters are any set of numbers.
    • MIN(), returns the minimum value in a list of arguments.

Description

  • This function gives the smallest number in a given set of values.
  • In ,First parameter is required and from the second parameter are optional.
  • Here Parameters can be numbers, names, arrays or references that contain numbers.
  • Also logical values and text representation can be valid when we are entering directly.
  • In a referred array only numbers are considered.Empty cells,logical values or text in the referred array are not considered.
  • Suppose the arguments contain no numbers then this gives the value as 0.
  • This function will return the result as error when any one of the argument is non-numeric or the referred array cannot translated in to numbers.
  • suppose we want to consider the logical values in a referred array , we can include in the MINA function.

ZOS

  • The syntax is to calculate minimum number in the given set of numbers in ZOS is .
    • Parameters are any set of numbers.
  • For e.g., MIN(2..10,-11..-4)

Examples

  1. =MIN(10,15,28,87)=10
  2. =MIN(-5,-8,-15,0)=-15
  3. =MIN(0.45,0.265,0.314,0.121)=0.121
  4. =MIN(4,7,9,TRUE)=1
  5. =MIN(4,7,9,FALSE)=0

Related videos

MIN

See Also

References

Minimum