vector.py

Created by matt-numworks

Created on March 21, 2024

457 Bytes


import numpy as np



def angle_between_vectors(vector1, vector2):
    vector1 = np.array(vector1)
    vector2 = np.array(vector2)
    dot_product = np.dot(vector1, vector2)
    norm_vector1 = np.linalg.norm(vector1)
    norm_vector2 = np.linalg.norm(vector2)
    cos_theta = dot_product / (norm_vector1 * norm_vector2)
    angle_in_radians = np.arccos(cos_theta)
    angle_in_degrees = np.degrees(angle_in_radians)
    return angle_in_degrees

During your visit to our site, NumWorks needs to install "cookies" or use other technologies to collect data about you in order to:

With the exception of Cookies essential to the operation of the site, NumWorks leaves you the choice: you can accept Cookies for audience measurement by clicking on the "Accept and continue" button, or refuse these Cookies by clicking on the "Continue without accepting" button or by continuing your browsing. You can update your choice at any time by clicking on the link "Manage my cookies" at the bottom of the page. For more information, please consult our cookies policy.