StackOverflow 文档 Julia Language 教程 sub2ind 将下标转换为线性索引 将下标转换为线性索引 Created: November-22, 2018 julia> sub2ind((3,3), 1, 1) 1 julia> sub2ind((3,3), 1, 2) 4 julia> sub2ind((3,3), 2, 1) 2 julia> sub2ind((3,3), [1,1,2], [1,2,1]) 3-element Array{Int64,1}: 1 4 2 坑瀑布sub2ind