Open In App

Find maximum element along with its index in Julia – findmax() Method

Last Updated : 26 Mar, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

The findmax() is an inbuilt function in julia which is used to return the maximum element of the specified collection along with its index. If there are multiple maximal elements are present in the collection, then the first one will be returned. If there is any data element is NaN, this element is returned.

Syntax:
findmax(itr)
or
findmax(A; dims)

Parameters:

  • itr: Specified collection of elements.
  • A: Specified array.
  • dims: Specified dimension.

Returns: It returns the maximum elements with their corresponding index.

Example 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]))


Output:

Example 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))


Output:


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads