Memory allocation: Difference between revisions

m
mNo edit summary
Line 768:
Julia has memory management. Objects are freed from memory automatically. Because 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{FloatFloat64,2}(100,100)
matrix[31,42] = pi
</lang>
4,102

edits