Paul Nemec
Paul Nemec
Ok, I just increased the number of samples to 10 000 and I feel more confident saying the distribution is fat tailed and that at the very least taking more...
Hey, thanks for the response :) > Using the minimum as the estimator is not supported; the reason why is explained in more detail in the user guide but the...
What about repeated moving averages?
So, would the block size have to divide the array size? Or could the last blocks along each axis be shorter? Because the second option would be needed for chunked...
So, for my use case, namely HDF5Arrays, I have both chunked and unchunked datasets. Chunked datasets are stored in separate blocks on disk, (each is internally contiguous). Unchunked datasets are...
There aren't magic bytes but every line ends in "physiDet" and the first line has to contain three integers. (It's a human readable delimited-ish format) The ending is ".root.hits" so...
[src/query.jl#L72-L90](https://github.com/JuliaIO/FileIO.jl/blob/a01dbea9b17801b77d4ee13c3629ce8077547894/src/query.jl#L72-L90) seems to suggest, that if only one format exists for an extension and it has no magic bytes, it will get loaded as is without further checking.
Ok, quick correction on my specific file format: The line ending may be different. First line still has three integers, but following lines may vary in terms of the ending...
How do you deal with statements that are mathemtaically identical to what the user specified, but quite different in notation? For example, julia has no nth root function, so when...
For my purposes I need multi dimensional transforms. So, I want to be able to Approximate a function from 2D to ND and transform the whole thing. In that case...