Galen Lynch
Galen Lynch
I'm trying to use [GridSpec](https://matplotlib.org/api/gridspec_api.html#matplotlib.gridspec.GridSpec) in matplotlib with PyCall, and ran into this error: ```julia julia> using PyCall, PyPlot # Make a GridSpec object julia> gs_main = PyPlot.matplotlib[:gridspec][:GridSpec](1, 2) PyObject...
As I'm writing up things that use this package, it occurs to me that it would be nice to cite it in some way. Maybe we should think about how...
It would be great if we had a direct convolution kernel, which would probably be faster for small convolutions.
I was doing some GPU based convolutions recently, and realized that NNlib.jl also exports `conv`. I imagine it would be pretty reasonable to want to do both CPU and GPU...
We already use overlap-save for fir filtering, when it is advantageous to do so. It seems like it would make sense to also use overlap-save for `conv`. As fir filtering...
It would be great if we had a more prominent tutorial in the docs. I remember when I first started using DSP.jl, I was at a loss for how to...
```julia julia> using DSP julia> xcorr(rand(Int, 5), rand(Int, 5)) ERROR: InexactError: trunc(Int64, 7.28283193350032e36) Stacktrace: [1] trunc at ./float.jl:693 [inlined] [2] round at ./float.jl:359 [inlined] [3] _broadcast_getindex_evalf at ./broadcast.jl:574 [inlined] [4]...
Is CompatHelper supposed to also work for dependencies that are not required by a package, but are required to test the package, a.k.a. test-specific dependencies? [DSP.jl recently ran into a...
To use `negbin` with an initial value for the shape parameter requires the use of the keyword argument called `initialθ`. Unicode symbols are a pain to type in many programming...
I would like to use queries that return arrays of `text`, however parsing these columns into arrays does not currently work: I just get the string representing the PostgreSQL array...