Jérémy

Results 30 issues of Jérémy

It might be useful to have the option to include a `.jl` file in a page and display the code. This would make it easy to have examples in an...

Type: Plugin

Writing directly to a file with compression fails on dataset creation. Things work fine without compression. Note that manually writing to a group with compression works... See below for the...

dataset

If we have a large number of particles `N`, then the matrix of pairwise distances with size `NxX` might not fit in the memory. It should still be possible to...

The loading time of OhMyREPL is not too bad, but on my machine, entering characters for the first time is very slow. Letters take a good 3-4 seconds to appear...

I couldn't find an example for this in the docs, but are Interval values (not unknowns) allowed in the root function? I tried the following (note the interval `g1` parameter),...

It seems that conjugation does not work, as it fall back on the `conj(x) = x` Julia base definition: ``` julia> @vars a; conj(1im*a) I*a ```

It can be convenient to save the plot data in an external file that is read in with `table`. This option could be passed as a keyword argument to `pgfsave`.

I was looking for the command to manually start a specific julia version (i.e. `julia +beta`) and couldn't find the syntax in the help text. I had to go back...

enhancement

Currently, svg output is disabled by default because it is really slow in IJulia, something I have tested for myself. However, displaying svgs in e.g. VSCode works well, and gives...

It seems that tuples are currently being converted to structs, which is wrong. I think it makes more sense to convert tuples to cell arrays. Thoughts? ```julia julia> jvalue(mxarray((2.5,2.6))) Dict{String,Any}...