We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7000690 commit 7dfee6aCopy full SHA for 7dfee6a
docs/src/index.md
@@ -135,7 +135,9 @@ to perform `^` element-by-element on arrays. For example,
135
`[1,2,3] ^ 3` is not defined, since there is no standard
136
mathematical meaning to "cubing" an array, but `[1,2,3] .^ 3`
137
is defined as computing the elementwise
138
-(or "vectorized") result `[1^3, 2^3, 3^3]`.
+(or "vectorized") result `[1^3, 2^3, 3^3]`. Similarly for unary
139
+operators like `!` or `√`, there is a corresponding `.√` that
140
+applies the operator elementwise.
141
142
```jldoctest
143
julia> [1,2,3] .^ 3
0 commit comments