Getting the minimum value from a list in Julia - min() Method Last Updated : 21 Apr, 2020 Comments Improve Suggest changes Like Article Like 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: Python # 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: Python # 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 Comment More infoAdvertise with us Next Article Getting the minimum value from a list in Julia - min() Method K Kanchan_Ray Follow Improve Article Tags : Julia Similar Reads Getting the maximum value from a list in Julia - max() Method The max() is an inbuilt function in julia which is used to return the maximum value of the parameters. Syntax: max(x, y, ...) Parameters: x: Specified 1st value. y: Specified 2nd value and so on. Returns: It returns the maximum value of the parameters. Example 1: Python # Julia program to illustrate 1 min read Getting minimum elements in Julia - minimum() and minimum!() Methods The minimum() is an inbuilt function in julia which is used to return minimum elements in different scenario. Syntax: minimum(f, itr) or minimum(itr) or minimum(A::AbstractArray; dims) Parameters: f: Specified function.itr: Specified list of elements.A::AbstractArray: Specified array of different d 2 min read Getting floor value of x in Julia - floor() Method The floor() is an inbuilt function in julia which is used to return the nearest integral value less than or equal to the specified value x. Syntax: floor(x) Parameters: x: Specified value. Returns: It returns the nearest integral value less than or equal to the specified value x. Example 1: Python # 1 min read Get index of last true value of array in Julia | Array findlast() Method The findlast() is an inbuilt function in julia which is used to return the index or key of the last true value in the specified array. Here values of index or key start from 1 i.e, for index of 1st element is 1, index of 2nd element is 2 and so on. Syntax: findlast(A) or findlast(predicate::Function 2 min read Getting minimum element along with its index in Julia - findmin() Method The findmin() is an inbuilt function in julia which is used to return the minimum element of the specified collection along with its index. If there are multiple minimal elements are present in the collection, then the first one will be returned. If there is any data element is NaN, this element is 1 min read Like