RosettaCodeData/Task/Documentation/Julia/documentation-2.julia

16 lines
230 B
Plaintext

"""
bar(x[, y])
Compute the Bar index between `x` and `y`. If `y` is missing, compute
the Bar index between all pairs of columns of `x`.
# Examples
```julia-repl
julia> bar([1, 2], [1, 2])
1
```
"""
function bar(x, y) ...