Tom Rottier

Results 4 issues of Tom Rottier

If I drag the Julia REPL from the terminal into the editor then close it using "ctrl + d" or calling `exit()` I then cannot open the REPL again. You...

bug
upstream

MWE: In Matlab create struct with 3D char array and save as .mat ```matlab c1 = ['abc'; 'abc']; char_array3D = cat(3, c1, c1) s = struct('c', char_array3D) save('s.mat', 's') ```...

```julia f = Figure() ax1 = Axis(f[1, 1], title="alpha = 0.5") ax2 = Axis(f[1, 2], title="color = (:red, 0.5)") xs = 1:10 lower, upper = fill(-1.0, 10), fill(1.0, 10) band!(ax1,...

bug
good first issue
Makie

Trying to solve the following `IntervalNonlinearProblem`: ```julia f(t,p) = sin(t) - 10.0 prob = IntervalNonlinearProblem(f, [0.0, 2pi]) sol = solve(prob, ITP()) ```` gives a `FloatingPointLimit` return code and the solution...