Jaakko Ruohio
Jaakko Ruohio
``` using Octavian n,m=100,10 y, A, x = rand(n), rand(n,m), rand(m+1) matmul!(y,A,x) ``` whereas ``` using LinearAlgebra n,m=100,10 y, A, x = rand(n), rand(n,m), rand(m+1) mul!(y,A,x) ``` errors `ERROR: DimensionMismatch("second...
On Julia 1.10.1, `download` regressed compared to Julia 1.10.0. This is on empty depot. Side effect is that registries cannot be updated (`]up`). ``` julia> download("https://julialang.org/") ERROR: RequestError: Error reading...
Voronoi diagram of this WKB produces one non-convex cell. It is a ten-point multipoint. ``` UInt8[0x01, 0x04, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x01, 0x01, 0x00, 0x00, 0x00, 0x58,...
``` using GLMakie, GeoInterfaceMakie, LibGEOS GeoInterfaceMakie.@enable(LibGEOS.AbstractGeometry) p1 = readgeom("POLYGON((0 0, 1 0, 0 1, 0 0))") p2 = readgeom("POLYGON EMPTY") plot(p1) # ok plot(p2) # fails ``` gives ``` ERROR:...
See https://github.com/JuliaGeo/LibGEOS.jl/pull/175#issuecomment-1615188688 I removed nearest points tests in test/geos_operations.jl in PR https://github.com/JuliaGeo/LibGEOS.jl/pull/175. More clean up remains to be done.
#150 improved show, but now ``` using LibGEOS ls = LineString([[cosd(a), sind(a)] for a in range(0, stop=360, length=1000)]) ``` more than fills the screen. Compactified output of `display` would be...
**Describe the example** ODE initialization broke for `SecondOrder` block in ModelingToolkitStandardLibrary v2.7.0. Similar usage of `FirstOrder`-block still works. **Minimal Reproducible Example 👇** ```julia using ModelingToolkit: t_nounits as t, ODESystem, connect,...
``` using StatsPlots, DataFrames, Statistics e = DataFrame(rand(1:4,100,3)) @df e corrplot([:x1 :x2]) # ok ``` works, but this does not ``` @df e corrplot([:x1,:x2]) # not ok ERROR: MethodError: no...
This is with FreeTypeAbstraction v0.10.1, Julia v1.10.1 on Windows. I set Julia depot path with ``` $Env:JULIA_DEPOT_PATH="C:\Users\jaakkor2\MyTemp\depå ``` then ``` julia> using Makie Precompiling Makie Info Given Makie was explicitly...
Text and code refer to Hosaki's function but the math image is Himmelblau's function.  Later Himmelblau's function is referenced again 