Arpad Rozsas
Arpad Rozsas
Hi Bryan, First, thanks for this great package. I'm trying to use it to create a 3D time-evolution plot of a Lorenz system. My approach is to use the `graphjs`...
``` using XLSX: readtable, readxlsx file_path = "folder1\\folder2\\girder_results_10.xlsx" xt = readtable(file_path, "XLSX-Export") xf = readxlsx(file_path) ``` `readtable` and `readxlsx` both return an error: `ERROR: ArgumentError: no node name` Here is...
Sphinx build stuck in reading sources... when `singledispatch` and `autodoc_mock_imports` are used
### Describe the bug Sphinx build hangs forever (until it times out) if `autodoc_mock_imports` is used with code that uses `singledispatch`. ### How to Reproduce See this repository and its...
Is the below behavior expected or a bug? ```julia Ab = Buffer([1.0], 2, 2) Ab[:] = zeros(4) Ab[[1, 2]] .+= [1.0, 2.0] @show Ab Buffer{Float64,Array{Float64,2}}([0.0 0.0; 0.0 0.0], false) ```...