`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 = vcor(a, b) # Fails ```