benninkrs
benninkrs
Preliminary support for matrix multiplication. - New methods for * for combinations of OffsetArray and AbstractArray Unfortunately this introduces method ambiguities with Base. - As an alternative, tried defining a...
``` julia> A = OffsetArray([1 2; 3 4], 0:1, 0:1) 2×2 OffsetArray(::Array{Int64,2}, 0:1, 0:1) with eltype Int64 with indices 0:1×0:1: 1 2 3 4 julia> b = OffsetArray([5; 6], 0:1)...
(Apologies if this not the proper place/way for me to ask this question.) I recently discovered that `@benchmark` does not work the way I thought it did--and hence is not...
Nice work, BSON.jl is very useful. Suppose one is running simulations that generate lots of data, perhaps more than can fit in RAM. In that case one would like to...
Is there interest in generalizing the beta function to [any number of arguments](https://en.wikipedia.org/wiki/Beta_function#Multivariate_beta_function)? A basic implementation of `logbeta` would be ``` logbeta() = -Inf logbeta(args...) = sum(loggamma.(args)) - loggamma(sum(args)) ```
If I understand correctly, `SmallVector` and other collections implemented in this package have a fixed capacity, meaning it is impossible to store more than the number of items specified by...