VectorizedStatistics.jl icon indicating copy to clipboard operation
VectorizedStatistics.jl copied to clipboard

Fast, LoopVectorization.jl-based summary statistics

Results 2 VectorizedStatistics.jl issues
Sort by recently updated
recently updated
newest added

`vcor` doesn't allow for correlating matrices, while `cor` does: ```julia using VectorizedStatistics using Statistics a = rand(5, 15) b = rand(5, 10) c = cor(a, b) # Works vc =...