julialangHow to fill an array in JuliaLang?
An array in JuliaLang can be filled using the fill
function.
arr = fill(0, 5)
This will create an array of 5 elements, each element being 0.
fill
: This is the function used to fill an array.0
: This is the value used to fill the array.5
: This is the size of the array.
Helpful links
More of Julialang
- How to test code in JuliaLang?
- How to reshape arrays in JuliaLang?
- How to get JuliaLang version?
- How to use tuples in JuliaLang?
- How to use try catch in JuliaLang?
- How to sort in JuliaLang?
- How to use the JuliaLang package manager?
- How to animate in JuliaLang?
- How to add a legend to a plot in JuliaLang?
- How to use dictionaries in JuliaLang?
See more codes...