You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
thanks a lot for the great implementation of TS-SS!
I noticed that in your as well as all other implementations I have found, the angle theta is converted to radians, although it already is in radian.
Is there a reason for this conversion? As far as I can tell Theta() outputs the angle in radian (as also demonstrated by the fact that we add math.radian(10) to the acos).
Similarly, the area of the sector is calculated with the formula for the angle in degrees, but again, as far as I can tell Theta is in radian.
Thanks a lot in advance!
Clemens
The text was updated successfully, but these errors were encountered:
Hi,
thanks a lot for the great implementation of TS-SS!
I noticed that in your as well as all other implementations I have found, the angle theta is converted to radians, although it already is in radian.
See the following line here:
https://github.com/taki0112/Vector_Similarity/blob/3a1f6248aba6be8eed865339a26e800dcf02c028/python/TS_SS/Vector_Similarity.py#L20C1-L20C43
Is there a reason for this conversion? As far as I can tell Theta() outputs the angle in radian (as also demonstrated by the fact that we add math.radian(10) to the acos).
Similarly, the area of the sector is calculated with the formula for the angle in degrees, but again, as far as I can tell Theta is in radian.
Thanks a lot in advance!
Clemens
The text was updated successfully, but these errors were encountered: