Maxim Grechkin

Results 11 issues of Maxim Grechkin

Would it be possible for DSP.jl to support https://github.com/tknopp/NFFT.jl for working with non-uniformly sampled signals?

Some inconsistency in zscore when all values are the same: ``` julia @show zscore(zeros(5) + log(1e-5))[1] # NaN @show zscore(zeros(8) + log(1e-5))[1] # -0.9354143466934853 @show zscore(zeros(10) + log(1e-5))[1] # -0.9486832980505138...

bug

Right now it doesn't work because `Float16` is not part of the `BitsKindOrString`

``` julia using DataStructures, JLD d = DefaultDict(Int, Int, () -> 0) d[1] = 3 @save "test.jld" d @load "test.jld" ``` gives me ``` `DefaultDict{Int64,Int64,Function}` has no method matching DefaultDict{Int64,Int64,Function}()...

I'm using the following optimized serializers to significantly speed up JLD saving/loading while at the same time reduce the file size (Dicts are stored more efficiently with this among other...

It doesn't look like there is a way to connect to a remote notebook server, right? Are there plans to add it? Any pointers on where I should look to...

It seems like new API is vastly more powerful compared to the old one at the expense of being vastly more complicated. I've attempted a migration to it, but now...

Current version that one gets from `Pkg.add` is has the tests failing and pulls really old version of `Optim.jl`. I did `Pkg.checkout` to get the latest version of LowRankModels.jl and...

Master version is working fine on 0.4, but the one you get from Pkg.add is throwing lots of deprecation warnings.

Fix compatibility with IPython 1.0