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

16 lines
230 B
Text
Raw Permalink Normal View History

2019-09-12 10:33:56 -07:00
"""
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) ...