问题标签 [undefvarerror]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
julia - 定义变量时 Julia 抛出未定义的错误
我有这个简单的while循环i = 1
用作索引。
但我收到此错误:
我什至根据关于 SO 的一些类似问题的建议使我的 i 全球化,但错误仍然存在。我在 Pluto.jl 上运行它,所以可能是环境问题。
import - Documenter.jl UndefVarError
我正在尝试使用Documenter.jl
. 现在我导入了一个文档记录器由于某种原因找不到的模块。SparseArrays.jl
更明确地说:我通过导入import SparseArrays
并在文档字符串中引用SparseArrays.AbstractSparseArray
。(我也SparseArrays.jl
安装了。)但我得到了ERROR: LoadError: UndefVarError: SparseArrays not defined
. 原因是什么,我该如何解决?
编辑:这是代码的相关部分的样子:
example.jl
:
index.md
: