Hi,
I need to write a python program for the above. Since I dont know where to start on this, I have posted it.
User Profile
Collapse
Profile Sidebar
Collapse
prashanthrd
Last Activity: Jul 15 '19, 12:14 PM
Joined: Jul 13 '19
Location:
-
Find closest (m) points using cosine distance - Python
I am given n data points in the form of list of tuples like S=[(x1,y1),(x2,y2) ,(x3,y3),(x4,y4 ),(x5,y5),..,(x n,yn)] and a point P=(p,q)
My task is to find 5 closest points in S from P. We have to use cosine distance.
Example:
S= [(1,2),(3,4),(-1,1),(6,-7),(0, 6),(-5,-8),(-1,-1)(6,0),(1,-1)]
P= (3,-4)
Output:
(6,-7)
(1,-1)
(6,0)
(-5,-8)
(-1,-1)
I need...
No activity results to display
Show More
Leave a comment: