ga72kud
ga72kud
Some of your code is not working for me. The compiler does not know SArrayStorage, RegularSpacing. It is not ```julia using AbstractGPs, KernelFunctions, TemporalGPs using StaticArrays using Zygote # Specify...
I am using RobotOS.jl and like that package because it allows me to use JuliaLang for ROS. Usually, when I am coding in Julia and make an error, there will...
Is there a possibility of changing the radii for the point cloud?
There is a problem with the parseOSM function ```julia FILE=" lanelet2_map.osm" OpenStreetMapX.parseOSM(FILE) ``` ```julia "ArgumentError(\"cannot parse \\\"\\\" as Float64\"), , 0, 0, 0" in eval at [base/boot.jl:360](https://github.com/pszufe/OpenStreetMapX.jl/issues/new#) in top-level scope...
It would be nice if the second line would also work ```julia N=MvNormal(μ, Σ) covellipse(N, n_std=2, aspect_ratio=1, label="cov1") covellipse(μ, Σ, n_std=2, aspect_ratio=1, label="cov1") ```
Omega distributions do not work normal, bernoulli, ==ₚ ... do not work also for the example the sampling does not work. Is the documentation up to date? ```julia using Omega,...
I have tried several things to use the ciid command. Maybe there is an old branch or something happened. It is not working anymore ```julia LoadError: UndefVarError: ciid not defined...
I like your package very much, but I have an error with the compilation process. After changing the environment it seems that the installation is broken after some time. I...
In the following code, I condition on the multivariate normal distribution x. The mean of the multivariate normal distribution is dependent on a univariate distribution x₁=normal(-4.,2.). I am afraid the...
I am trying to use following univariate distribution case to transform it into a multivariate distribution case: ```julia α=categorical([0.3, 0.7]) function x_(rng) #α=categorical([0.1, .9]) if(α(rng)==1) x=normal(rng, 0.3, .1) elseif(α(rng)==2) x=normal(rng,...