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 test code in JuliaLang?
- How to use addprocs in JuliaLang?
- How to create a histogram in JuliaLang?
- How to use enums in JuliaLang?
- How to append to an array in JuliaLang?
- How to round numbers in JuliaLang?
- How to use dictionaries in JuliaLang?
- How to use regular expressions in JuliaLang?
- How to use assert in JuliaLang?
- How to parse JSON in JuliaLang?
See more codes...