Júlio Hoffimann
Júlio Hoffimann
We are gradually moving to more complex stochastic processes, and the current solver infrastructure is not coping with the complexity planned ahead. This issue needs to be addressed in a...
Can I submit a PR to add a `knn!` function that fills the first arguments instead of allocating and returning? I have to call `knn` 10^6 times in my applications,...
I think this code should work: ```julia julia> using StatsBase julia> sample(1:3, StatsBase.Weights(rand(Float32,3)), replace=true) ERROR: MethodError: no method matching sample(::UnitRange{Int64}, ::Weights{Float32, Float32, Vector{Float32}}; replace=true) Closest candidates are: sample(::AbstractArray, ::AbstractWeights) at...
Can you please confirm that this warning is already on your radar? ``` DEPRECATION WARNING on line 18 of /home/juliohm/.julia/packages/Documenter/Nu7Lp/assets/html/scss/documenter/components/_admonition.scss: !global assignments won't be able to declare new variables in...
To reproduce the error: ```Julia julia> using StateSpaceModels julia> structural(rand(Float32, 100), 10) ERROR: MethodError: no method matching StateSpaceModel(::Array{Float32,2}, ::Array{Float64,2}, ::Array{Float64,2}, ::Array{Float64,2}) Closest candidates are: StateSpaceModel(::Union{Array{Typ,1}, Array{Typ,2}}, ::Array{Typ,3}, ::Array{Typ,2}, ::Array{Typ,2}) where...
I am new to climate sciences so forgive me if this is not an appropriate question for the project. Is it possible to compute climatologies given a NetCDF file with...
Could you explain the main differences so that I can more easily choose between the available approaches in future projects? https://github.com/docopt/DocOpt.jl Perhaps adding a section to the README would be...
We have developed GeoTables.jl and GADM.jl over the years to download spatial geometries for any place in the world by name. I would be nice to have a GeoBR.jl package...
Can ApproxFun.jl compute the inner product between two functions in a Hilbert space? https://discourse.julialang.org/t/packages-defining-functional-data-types/73539
Currently our `Vec` type is an alias to `SVector` and that helped us get off the ground and move fast with implementations. The only problem with `SVector` is that it...