arrays - 错误:LoadError:MethodError:没有方法匹配 Array(::Type{Int8},::Int64,::Int64,::Int64)

标签 arrays multidimensional-array julia

我正在使用 Julia v0.7.0 来升级为 Julia v0.5.0 编写的包。我陷入了以下错误:

ERROR: LoadError: MethodError: no method matching Array(::Type{Int8}, ::Int64, ::Int64, ::Int64)
Closest candidates are:
  Array(!Matched::LinearAlgebra.UniformScaling, ::Integer, ::Integer) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v0.7/LinearAlgebra/src/uniformscaling.jl:329
  Array(::Any) where T<:AbstractArray at abstractarray.jl:22
Stacktrace:
 [1] CellularAutomata.CA2d(::Array{Int64,1}, ::Array{Int64,1}, ::Array{Int64,2}, ::Int64, ::Int64, ::Int64) at /home/jafar_isbarov/.julia/dev/CellularAutomata/src/2dim.jl:22
 [2] CellularAutomata.CA2d(::Array{Int64,1}, ::Array{Int64,1}, ::Array{Int64,2}, ::Int64) at /home/jafar_isbarov/.julia/dev/CellularAutomata/src/2dim.jl:21
 [3] turbine_test() at /home/jafar_isbarov/Documents/projects/CellularAutomata.jl/test/conway_test.jl:57
 [4] top-level scope at none:0
 [5] include at ./boot.jl:317 [inlined]
 [6] include_relative(::Module, ::String) at ./loading.jl:1038
 [7] include(::Module, ::String) at ./sysimg.jl:29
 [8] exec_options(::Base.JLOptions) at ./client.jl:239
 [9] _start() at ./client.jl:432
in expression starting at /home/jafar_isbarov/Documents/projects/CellularAutomata.jl/test/runtests.jl:3

这是导致它的行:

cells = Array{Int8}(h, w, gen)

这是整个 block :

mutable struct CA2d

    #User given values
    k::Int #Number of states
    r::Int #r-nearest neigbors

    #Internal values
    cells::Array{Int8, 3}

    function CA2d(B::Array{Int,1},
                  S::Array{Int,1},
                  init::Array{Int,2},
                  gen::Int,
                  k::Int=2,
                  r::Int=1)

        h, w = size(init)
        cells = Array{Int8}(h, w, gen) #Syntax A(T, dims) is deprecated
        cells[:, :, 1] = Array{Int8}(init[:, :])

        for g = 2:gen
            for i = 1:h, j = 1:w
                cc = -cells[i, j, g-1]
                for p = (i-r):(i+r), q = (j-r):(j+r)

                    #Cyclic boundary conditions
                    if p < 1; p = h-p; end
                    if p > h; p = p-h; end
                    if q < 1; q = w-q; end
                    if q > w; q = q-w; end

                    cc += cells[p, q, g-1]
                end
                cells[i, j, g] = eval_rule(cc, cells[i, j, g-1], B, S)
            end #hw ij
        end #gen

        new(k, r, cells)
    end
end

我检查过,知道hwgen确实是整数。

您可以找到整个存储库 here .

编辑: 当我用 cells = Array{Int8}(undef, h, w, gen) 替换 cells = Array{Int8}(h, w, gen) 时,我得到了以下错误:

ERROR: LoadError: MethodError: no method matching Array(::Type{Int8}, ::Int64, ::Int64, ::Int64)
Closest candidates are:
  Array(!Matched::LinearAlgebra.UniformScaling, ::Integer, ::Integer) at /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v0.7/LinearAlgebra/src/uniformscaling.jl:329
  Array(::Any) where T<:AbstractArray at abstractarray.jl:22
Stacktrace:
 [1] CellularAutomata.CA2d(::Array{Int64,1}, ::Array{Int64,1}, ::Array{Int64,2}, ::Int64, ::Int64, ::Int64) at /home/jafar_isbarov/.julia/dev/CellularAutomata/src/2dim.jl:22
 [2] CellularAutomata.CA2d(::Array{Int64,1}, ::Array{Int64,1}, ::Array{Int64,2}, ::Int64) at /home/jafar_isbarov/.julia/dev/CellularAutomata/src/2dim.jl:21
 [3] turbine_test() at /home/jafar_isbarov/Documents/projects/CellularAutomata.jl/test/conway_test.jl:57
 [4] top-level scope at none:0
 [5] include at ./boot.jl:317 [inlined]
 [6] include_relative(::Module, ::String) at ./loading.jl:1038
 [7] include(::Module, ::String) at ./sysimg.jl:29
 [8] exec_options(::Base.JLOptions) at ./client.jl:239
 [9] _start() at ./client.jl:432
in expression starting at /home/jafar_isbarov/Documents/projects/CellularAutomata.jl/test/runtests.jl:3

最佳答案

创建一个未初始化的 eltype Int8 数组:

Array{Int8}(undef, h, w, gen)

关于arrays - 错误:LoadError:MethodError:没有方法匹配 Array(::Type{Int8},::Int64,::Int64,::Int64),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70455886/

相关文章:

python - numpy 一维数组可以不连续吗?

c++ - 显示一个三维结构数组

c++ - 置换函数和交换字符串值的问题

javascript - 从二维数组中删除多个数组

c - 错误 : subscripted value is neither array nor pointer nor vector

julia - 实例化类型时的关键字参数

c - 如何访问字符数组的第一个字符?

java - 在 Java 中初始化二维数组

docker - Julia 不适合在Docker容器中加载大数据[总线错误]

julia - 使用 UInt128 数据类型时 Julia 中的大整数除法错误