當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。