想知道像这种数组索引是怎么取的
julia> A = reshape(collect(1:16), (4,4))
4×4 Array{Int64,2}:
1 5 9 13
2 6 10 14
3 7 11 15
4 8 12 16
julia> A[2:3,2:end-1]
2×2 Array{Int64,2}:
6 10
7 11
- 我想的是一维从2->2,二维从3->(end-1),也就是3->3
- 或者是取包含在2行3列及2行(end-1)列的元素
好像都不是这么取的