我有这个简单的while循环i = 1
用作索引。
global i = 1
n = rows
while i <= n
if prod(isa.(collect((y)[i,:]),Number))==0
delete!(y,i)
x_axis = x_axis[1:end .!= i]
n -= 1
end
i += 1
end
但我收到此错误:
UndefVarError: i not defined
top-level scope@Local: 23
我什至根据关于 SO 的一些类似问题的建议使我的 i 全球化,但错误仍然存在。我在 Pluto.jl 上运行它,所以可能是环境问题。