Ruby Vector angle_with() 函数
angle_with() 是Ruby中一个内置的方法,用于返回两个向量之间的角度。这个角度总是在0和π之间。
语法 :vec1.angle_with(vec2)
参数 :该函数接受向量作为参数。
返回值 :它返回两个向量之间的角度。
例子 1 :
#Ruby program for angle_with() method in Vector
#Include matrix
require "matrix"
#Initialize the vector
vec1
= Vector[1, 2] vec2 = Vector[0, 1]
#Prints angle between two vectors
puts vec1.angle_with(vec2)
输出:
0.46364760900080615
例2 :
#Ruby program for angle_with() method in Vector
#Include matrix
require "matrix"
#Initialize the vector
vec1
= Vector[1, 1, 0] vec2 = Vector[0, 1, 3]
#Prints angle between two vectors
puts vec1.angle_with(vec2)
输出:
1.3452829208967654