We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65bac16 commit e3e696aCopy full SHA for e3e696a
src/StatsAPI.jl
@@ -1,3 +1,21 @@
1
module StatsAPI
2
3
+# pairwise(f, x[, y])
4
+#
5
+# Return a matrix holding the result of applying `f` to all possible pairs
6
+# of entries in iterators `x` and `y`, and return it.
7
8
+# This generic function is owned by StatsBase.jl, which is the sole provider
9
+# of the default definition.
10
+function pairwise end
11
+
12
+# pairwise!(f, dest::AbstractMatrix, x[, y])
13
14
+# Store in matrix `dest` the result of applying `f` to all possible pairs
15
16
17
18
19
+function pairwise! end
20
21
end # module
0 commit comments