
Last chance! 50% off unlimited learning
Sale ends in
Vdot
torch_vdot(self, other)
(Tensor) first tensor in the dot product. Its conjugate is used if it's complex.
(Tensor) second tensor in the dot product.
Computes the dot product (inner product) of two tensors. The vdot(a, b) function handles complex numbers differently than dot(a, b). If the first argument is complex, the complex conjugate of the first argument is used for the calculation of the dot product.
# NOT RUN {
if (torch_is_installed()) {
torch_vdot(torch_tensor(c(2, 3)), torch_tensor(c(2, 1)))
if (FALSE) {
a <- torch_tensor(list(1 +2i, 3 - 1i))
b <- torch_tensor(list(2 +1i, 4 - 0i))
torch_vdot(a, b)
torch_vdot(b, a)
}
}
# }
Run the code above in your browser using DataLab