這個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))
輸出:
相關用法
- Julia findmin()用法及代碼示例
- Julia getindex()用法及代碼示例
- Julia Array findprev()用法及代碼示例
- Julia Array findnext()用法及代碼示例
- Julia Array findfirst()用法及代碼示例
- Julia Array findlast()用法及代碼示例
- Julia isassigned()用法及代碼示例
- Julia eachindex()用法及代碼示例
- Julia setindex!()用法及代碼示例
- Julia conj!()用法及代碼示例
- Julia foreach()用法及代碼示例
- Julia first()用法及代碼示例
- Julia last()用法及代碼示例
- Julia zero()用法及代碼示例
注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 Find maximum element along with its index in Julia – findmax() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。