Open In App

Getting the minimum value from a list in Julia – min() Method

Improve
Improve
Like Article
Like
Save
Share
Report

The min() is an inbuilt function in julia which is used to return the minimum value of the parameters.

Syntax: min(x, y, …)

Parameters:

  • x: Specified 1st value.
  • y: Specified 2nd value and so on.

Returns: It returns the minimum value of the parameters.

Example 1:




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


Output:

1
1
2

Example 2:




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


Output:

0.2
0.3

Last Updated : 21 Apr, 2020
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads