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


Julia findmax()用法及代码示例


这个findmax()是 julia 中的一个内置函数,用于返回指定集合的​​最大元素及其索引。如果集合中存在多个最大元素,则将返回第一个。如果有任何数据元素是 NaN,则返回此元素。

用法:
findmax(itr)
or
findmax(A; dims)

参数:

  • itr:指定的元素集合。
  • A:指定数组。
  • dims:指定尺寸。

返回值:它返回具有相应索引的最大元素。

范例1:




# Julia program to illustrate 
# the use of findmax() method
  
# Getting the maximum elements
# with their corresponding index.
println(findmax([1, 2, 3, 4]))
println(findmax([5, 0, false, 6]))
println(findmax([1, 2, 3, true]))
println(findmax([5, 0, NaN, 6]))
println(findmax([1, 2, 3, 3]))

输出:

范例2:


# Julia program to illustrate 
# the use of findmax() method
  
# Getting the value and index of
# the maximum over the given dimensions
A = [5 10; 15 20];
println(findmax(A, dims = 1))
println(findmax(A, dims = 2))

输出:

相关用法


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