We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36ab4ad commit b6fe4adCopy full SHA for b6fe4ad
1 file changed
src/FsMath/VectorOps.fs
@@ -43,5 +43,5 @@ module VectorOpsSymbols =
43
let inline (.*) a b = Multiply.Invoke(a, b)
44
let inline (./) a b = Divide.Invoke(a, b)
45
let inline (.^) a b = Power.Invoke(a, b)
46
- let inline ( @ ) a b = Power.Invoke(a, b)
+ let inline ( @ ) a b = Dot.Invoke(a, b)
47
// Dot product ( @ )
0 commit comments