Thomas Vetter
Thomas Vetter
``` using DifferentialEquations function f(out,du,u,p,t) out[1] = - 0.04u[1] + 1e4*u[2]*u[3] - du[1] out[2] = + 0.04u[1] - 3e7*u[2]^2 - 1e4*u[2]*u[3] - du[2] out[3] = u[1] + u[2] + u[3]...
This might be more of a question/feature request than an issue (depending on the answer): Is it currently possible to infer systems for which the measurement timepoints are different for...
Just corrects a typo in the docstring of setproperties.
Apologies if a relevant example is already available in the documentation, but I couldn't find one. I am wondering how one would go about setting up an activity coefficient model,...
Packing one or more `Param()` into an Array that also contains some other number and then accessing elements in the array turns the `Param()`s into `Float` (or whatever the parent...
My aim here was to generate a random string of random length with a maximum length of 255 letters. So, I tried the following: ``` using Random s = randstring(rand(UInt8))...
It seems that UA_Client_connectSecureChannel_async should connect asynchronously as the name suggests. Problem introduced in: https://github.com/open62541/open62541/pull/5789
- This PR adds the standard Aqua.jl tests, introduces a continuous integration workflow (CI.yml) and finally restructures the files in the test folder into a set of reference tests. -...
### Feature description It would be nice if DataInspector() shows tuples of (r, theta) instead of (x,y,z) for a PolarAxis. Consider the following example: ``` f = Figure(size = (800,...