Another thing: Consider the following example X1 = zeros(100, 100) X2 = Array(Float64, (100, 100)) X1[1, 1] X2[1, 1]
In this piece of code, I will get an error saying "X2[1, 1] has more indices than dimensions", even though it hasn't. In light of the recent discussion on this list about the speed advantages of initializing unfilled Arrays I recently changed all my code from zeros to Arrays, so I'm getting this a lot...
