Romain Veltz
Romain Veltz
Hi, Would it be possible to have an iterator so that we can print the table ourself? For example, this happens when monitoring a running process. Thank you
Hi, When passing kwargs to `solve` I am surprised that they can't be recovered from the solution ``` sol = solve(prob, Tsit5(); reltol = 1e-5) ``` Where is `reltol` saved...
Hi, I noticed the following is quite slow ```julia using LinearAlgebra, SparseArrays, BlockArrays M = 30 N = 500 J = BlockArray(spzeros(M * N, M * N), N * ones(Int64,M),...
Hi, I am trying to use LabelledArrays a bit like in Diffeq. Is it easy to make the following work or some related syntax? Thank you for your work, Cheers...
Hi, I am still on KK0.4.2. Somehow, this used to work but not anymore ``` using KrylovKit using CuArrays # version 0.2.2 CuArrays.allowscalar(false) import LinearAlgebra: mul!, axpby! mul!(x::CuArray, y::CuArray, α::T)...
Hi, I have become addicted to your package. The downside is that I would like an additional feature ;) I use Arnoldi iterations for computing the spectrum and the convergence...
Hi, It would be nice to be able to generate / solve for the law of a Markov process directly in Catalyst. In the case of Continuous time MC, it...
Hi, I know you can do this: ```julia prob = DiscreteProblem(10.0,(0.0,3.0)) jump_prob = JumpProblem(prob,Direct(),jump,jump2) ``` but I would like to do ```julia sir_model1 = @reaction_network begin c1, s + i...
Hi, I am surprised this does not work. I am doing it wrong? ```julia using SparseArrays using DiffEqOperators function DiffOp(N, lx) hx = 2lx/N # D = CenteredDifference(2, 2, hx,...
When using Iterative solvers, it is very useful to have the log of convergence to attest the usefullness / efficiency of a preconditionner. The option is not present in the...