How to access columns in a Vector{Array{Float64,2}}

You apparently have a vector of matrices (call it A). A[i] gives you the matrix at position i. A[i][j, k] gives you the entry [j, k] of the matrix at position i in A. A[i][:, k] gives you the column k of the matrix at A[i]. Etc.

3 Likes