-
I cannot initiate FlowAtlas. Below is the error.
julia> using FlowAtlas; FlowAtlas.run("08-Aug-2024.wsp"; files="*/*.fcs")
ERROR: MethodError: no method matching run(::String; files::String)
The …
-
Consider calling `eigen` for a `ComplexF64` matrix which happens to be real-diagonal:
```julia
julia> D = ComplexF64[1 0; 0 2];
julia> eigen(D)
Eigen{ComplexF64, ComplexF64, Matrix{ComplexF64}, Ve…
-
...where division means "equivalent to multiplication with inverse" and pseudo-division means "equivalent to multiplication with pseudo-inverse" (with equivalence neglecting any numerical issues). Bri…
-
`Zygote` fails to use `rrule`s defined by other packages when run with `Julia 1.10+`
I noticed this when looking at compatibility with [`TaylorDiff.jl`](https://github.com/JuliaDiff/TaylorDiff.jl).…
-
See http://julialang.org/ about Julia.
Programming-Idioms is not intended to host code in all languages, only the most widely used languages.
A new entry is possible only after a lot of users have re…
-
https://julialang.org/downloads/
-
At the moment, the Julia version for integration tests is hard coded to version 1.9. The version should be optional adjustable per project. The idea is, that the version can be set as environment vari…
-
In cases like the following code, where a variable defined in the parent scope of a closure is used inside the closure and could potentially be reassigned in the parent scope, it seems to get boxed ev…
-
### Steps to reproduce
Installing a Julia package, using spack-installed Julia by running Julia itself (for example by starting Julia REPL and running `using Revise`) triggers what Julia calls a "p…
-
Hello,
I am trying to run simulations on salt tectonics with erosion-sedimentation active using a julia script. The problem is that when I start the simulation, the sedimentation was not happening.…