我的理解是,默认情况下,并行化包含在基本Julia安装中。nprocs()ERROR: UndefVarError: nprocs not defined [1] top-level scope at none:0
在任何Julia文档中,我都没有提到为了使用这些函数而需要包含的任何包。我在JuliaPro/Atom IDE中使用Julia版本1.0.5
我最近刚转到Julia1.1 Version 1.1.0 (2019-01-21),但我认为这也是报道的1.0版中的一个问题。为了总结一个虚拟变量,会出现一个错误:0.0 a += 1ERROR: UndefVarError: a not defined现在,强制使用变量的范围:julia> for i in 1:10
a
我正在尝试获取捕获异常的错误消息,以便用于警告。例如,在以下情况下ERROR: UndefVarError: b not defined [1] top-level scope如果说问题是没有定义b,那么以下处理异常的方法就没有那么有用的消息: a = 3+b @warn"Bad thing happ
我是Julia的新用户。我想通过Juno开始在Atom中使用Julia。在我使用jupyter-notebook做一些教程之前。现在,当我尝试运行下面的代码时,它返回以下错误消息。当我在同一台机器上的jupyter-notebook上运行相同的代码时,我没有得到错误。using Plots y = rand(10); # These are the plott