julialangHow to calculate the mean in JuliaLang?
The mean of a set of numbers can be calculated in JuliaLang using the mean()
function.
julia> using Statistics
julia> x = [1, 2, 3, 4, 5]
julia> mean(x)
3.0
The mean()
function takes a vector of numbers as an argument and returns the mean of the numbers.
Code explanation
mean()
: the function used to calculate the meanx
: the vector of numbers used as an argument for themean()
function
More of Julialang
- How to measure execution time in JuliaLang?
- How to use tuples in JuliaLang?
- How to work with rational numbers in JuliaLang?
- How to test code in JuliaLang?
- How to add a legend to a plot in JuliaLang?
- How to use enums in JuliaLang?
- How to use channels in JuliaLang?
- How to sort in JuliaLang?
- How to get JuliaLang version?
- How to use regular expressions in JuliaLang?
See more codes...