I have to find the angle between the vector
v1 = [-1,-2]
and
v2 = [90,-5]
here solution given how to calculate angle (mathematics)
in php code need to calculate angle between two vector [-1,-2] and [90,-5].
Thanks
|
I have to find the angle between the vector
and
here solution given how to calculate angle (mathematics) in php code need to calculate angle between two vector Thanks |
|||||||||||
|
And to calculate the actual angle:
|
|||||||
|
|
The angle of two vectors is calculated by
You can use this formula directly in PHP. Note: |v1| and |v2| are the length of the vectors and calculated using Pithagoras-formula: |v1|=sqrt(v1X*v1X + v1Y*v1Y) |v2|=sqrt(v2X*v2X + v2Y*v2Y) |
|||
|
|
|
You can use the
|
||||
|
|