Hi everyone… I wonder if you can help me with the usage of Arpack in Ubuntu… it works great in Mac (wrapping the arpack I installed with homebrew). But I have installed it in Ubuntu and won’t work
I get this when I try to run the example:
julia> using LinearAlgebra, Arpack
julia> A = Diagonal(1:4);
julia> λ, ϕ = eigs(A, nev = 2);
ERROR: ┌ Error: XYAUPD_Exception: Please check XYAUPD error codes in the ARPACK manual.
│ info = 4294967286
└ @ Arpack ~/.julia/packages/Arpack/7qkR1/src/libarpack.jl:24
Stacktrace:
[1] aupd_wrapper(::Type{T} where T, ::Arpack.var"#18#28"{Diagonal{Float64,Array{Float64,1}}}, ::Arpack.var"#19#29", ::Arpack.var"#20#30", ::Int64, ::Bool, ::Bool, ::String, ::Int64, ::Int64, ::String, ::Float64, ::Int64, ::Int64, ::Array{Float64,1}) at /home/user/.julia/packages/Arpack/7qkR1/src/libarpack.jl:92
[2] _eigs(::Diagonal{Float64,Array{Float64,1}}, ::UniformScaling{Bool}; nev::Int64, ncv::Int64, which::Symbol, tol::Float64, maxiter::Int64, sigma::Nothing, v0::Array{Float64,1}, ritzvec::Bool, explicittransform::Symbol) at /home/user/.julia/packages/Arpack/7qkR1/src/Arpack.jl:235
[3] #eigs#10 at /home/user/.julia/packages/Arpack/7qkR1/src/Arpack.jl:47 [inlined]
[4] #eigs#14 at /home/user/.julia/packages/Arpack/7qkR1/src/Arpack.jl:54 [inlined]
[5] #eigs#9 at /home/user/.julia/packages/Arpack/7qkR1/src/Arpack.jl:46 [inlined]
[6] top-level scope at none:1
Maybe I missed it, but I don’t think you told how you installed Julia on Ubuntu? Did you use the official binaries of the package from Ubuntu repositories?