An open API service indexing awesome lists of open source software.

https://github.com/teddyoweh/vector-algorithms

aSolving vectors related problem ( Vector Magnitude, Vector Dot Product, Vector Angle)
https://github.com/teddyoweh/vector-algorithms

algorithm-challenges algorithms dotproduct scalar vector

Last synced: 3 months ago
JSON representation

aSolving vectors related problem ( Vector Magnitude, Vector Dot Product, Vector Angle)

Awesome Lists containing this project

README

        

# Vector Algorithms
Solving vectors related problem ( Vector Magnitude,Vector Dot Product, Vector Angle)

# Usage
```Python
vec = Vector() # Initialization
vec.inputs('3,-5','8,12') # Parsing input vectors
vec.Magnitude('4,5') # Calculate the magnitude of the vector parse
vec.DotProduct() #Calculates the dot product of the vectors parsed
vec.Angle() # Calculates the angle of the between vectors

```