Code Explanation:
Importing NumPy:
import numpy as np
np is a common alias for NumPy, making it easier to reference.
Creating Vectors:
vector1 = np.array([1, 2, 3])
vector2 = np.array([4, 5, 6])
np.array() is used to create NumPy arrays.
vector1 is [1, 2, 3] and vector2 is [4, 5, 6].
Calculating the Dot Product:
dot_product = np.dot(vector1, vector2)
The dot product of two vectors
𝑎⋅𝑏
a⋅b is calculated using the formula:
(1⋅4)+(2⋅5)+(3⋅6)=4+10+18=32
Printing the Result:
print(dot_product)
This prints the result, which is 32.
Final Output:
32
0 Comments:
Post a Comment