You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to perform radial basis interpolation with multiquadric method. I have developed the below mentioned example to demonstrate my application of the project.
However, when I execute the script with returnRBFmatrix=true for interpolation application, it returns the following error:
LoadError: MethodError: no method matching evaluate(::Tuple{ScatteredInterpolation.RBFInterpolant{Vector{Float64}, LinearAlgebra.Adjoint{Float64, Matrix{Float64}}, Multiquadratic{Int64}, Euclidean}, Matrix{Float64}}, ::LinearAlgebra.Adjoint{Float64, Matrix{Float64}})
Closest candidates are:
evaluate(::ScatteredInterpolation.RadialBasisInterpolant, ::AbstractMatrix{var"#s36"} where var"#s36"<:Real) at C:\Users\user\.julia\packages\ScatteredInterpolation\05YPn\src\rbf.jl:270
evaluate(::ScatteredInterpolation.ShepardInterpolant, ::AbstractMatrix{var"#s36"} where var"#s36"<:Real) at C:\Users\user\.julia\packages\ScatteredInterpolation\05YPn\src\idw.jl:32
evaluate(::ScatteredInterpolation.NearestNeighborInterpolant, ::AbstractMatrix{var"#s36"} where var"#s36"<:Real) at C:\Users\user\.julia\packages\ScatteredInterpolation\05YPn\src\nearestNeighbor.jl:35
To resolve this, I tried passing the rbfMatrix as a stand alone value but that too returned a not defined constructor error:
ERROR: LoadError: MethodError: no constructors have been defined for ScatteredInterpolation.RadialBasisInterpolant
May I know how can this be resolved? Thanks!!
The text was updated successfully, but these errors were encountered:
I am trying to perform radial basis interpolation with multiquadric method. I have developed the below mentioned example to demonstrate my application of the project.
However, when I execute the script with
returnRBFmatrix=true
for interpolation application, it returns the following error:To resolve this, I tried passing the
rbfMatrix
as a stand alone value but that too returned a not defined constructor error:May I know how can this be resolved? Thanks!!
The text was updated successfully, but these errors were encountered: