Rainer Heintzmann

Results 28 issues of Rainer Heintzmann

By chance we found a change in behaviour. Probably caused by Julia 1.7.1: `ifft!(rand(ComplexF64,3,4),[])` yields an error: ```julia julia> ifft!(rand(ComplexF64,3,4),[]) ERROR: ArgumentError: reducing over an empty collection is not allowed...

Thanks for the great toolbox you contributed! I was trying to use it for the problem of picking particles in an image that need to have a minimum distance to...

JavaCall throws a `java.awt.HeadlessException` in Linux systems due to a missing "X11" display specification, when Git-Hub automatic testing is performed. Does anyone know how to avoid this? Also on Mac...

I am struggling with being able to call java routines, whos classes are inside a subfolder view5d/ in the jar file. I tried in vain for days. After opening the...

I tried to use `Interpolations.jl` to deform an image. I did not see a simple interface for this task, so here is my code: ```julia using Interpolations, TestImages, BenchmarkTools img1...

Using `LazyArrays.jl`, I found a speed problem with the assignment of arrays of Bool: ```julia using BenchmarkTools, LazyArrays x = 1:2000 .< 1000 y = (1:1900)' .< 1000 a =...

Hello. I am a new user and wanted to see, if Kaibu is capable of visualizing a 3-color 3D dataset. I tried for an hour or so, but could not...

I am having some trouble to grasp how to limit the action of the `einsum`: ```julia julia> a = ones(3,3); b= ones(3,3); julia> @tullio y[j,i] := a[i,k] * b[j,k] 3×3...

parsing

Hello davrous, thanks for your great work, which is very useful for making a PWA out of Babylon code. I did not find any Licence file? Is this free to...

This second attempt, uses a very light-weight implementation to add `CuArray` support to `ShiftedArrays.jl`. It is based on using an Extension Package, such that `ShiftedArrays` does not drag in any...