View source: R/gen-namespace.R
torch_vdot | R Documentation |
Vdot
torch_vdot(self, other)
self |
(Tensor) first tensor in the dot product. Its conjugate is used if it's complex. |
other |
(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.
This function does not broadcast .
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)
}
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.