Note
Go to the end to download the full example code.
Dot Example#
Compute the dot product of two vectors.
Input vectors:
u = [1. 2. 3.]
v = [4. 5. 6.]
Dot product dot(u, v):
32.0
import numpy as np
from spheresmooth import dot
# Example vectors
u = np.array([1.0, 2.0, 3.0])
v = np.array([4.0, 5.0, 6.0])
print("Input vectors:")
print("u =", u)
print("v =", v)
# Compute dot product: dot(u, v)
uv_dot = dot(u, v)
print("\nDot product dot(u, v):")
print(uv_dot)
Total running time of the script: (0 minutes 0.001 seconds)