当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Julia max()用法及代码示例


这个max()是 julia 中的一个内置函数,用于返回参数的最大值。

用法: max(x, y, …)

参数:

  • x:指定的第一个值。
  • y:指定的第二个值等。

返回值:它返回参数的最大值。

范例1:




# Julia program to illustrate 
# the use of max() method
  
# Getting the maximum value of the parameters.
println(max(1, 2, 3, 4))
println(max(1, 3, 5))
println(max(2, 4, 6))

输出:

4
5
6

范例2:


# Julia program to illustrate 
# the use of max() method
  
# Getting the maximum value of the parameters.
println(max(0.6, 0.7, 0.2))
println(max(2.5, 3.5, 0.3, 1.7))

输出:

0.7
3.5

相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 Getting the maximum value from a list in Julia – max() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。