作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
让 x::Vector{Vector{T}}
.迭代每个内部向量的所有元素(即 T
类型的所有元素)的最佳方法是什么?我能想到的最好的方法是使用单行符号进行双迭代,即:
for n in eachindex(x), m in eachindex(x[n])
x[n][m]
end
Iterators
中专为此目的而设计的包装,例如
for i in some_iterator(x) ; x[i] ; end
.
最佳答案
你的方式
for n in eachindex(x), m in eachindex(x[n])
x[n][m]
end
for n in eachindex(x)
y = x[n]
for m in eachindex(y)
y[m]
end
end
getindex
不是纯的)。或者,如果您不需要
m
和
n
,你可以使用
for y in x, for z in y
z
end
Base.Cartesian
using Iterators
for z in chain(x...)
z
end
关于julia - 迭代数组的最简单方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37902670/
我是一名优秀的程序员,十分优秀!