Jump to content

Memory allocation: Difference between revisions

m
Line 766:
 
=={{header|Julia}}==
Julia has memory management. Objects are freed from memory automatically. Because arrays such as vectors and matrices, unlike lists, can have fixed size allocations in memory, these can be allocated implicitly with a call to a function returning a vector, or explicitly by assigning the memory to a variable:
<lang julia>
matrix = Array{Float64,2}(100,100)
4,105

edits

Cookies help us deliver our services. By using our services, you agree to our use of cookies.