python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
How to Calculate Euclidean distance from sf data frame points in R
How do I calculate Euclidean distance in km from a spatial point that has been converted from a geometry column into a data frame. (The points are points which were derived from a spatial join of spat...
William.G.K
Votes: 0
Answers: 2
Finding closest pair of points from one array to another
I have two arrays of points v and v1. Need to find the closest pair from array v for each point in array v1. I came out with the three following methods to calculate the indices and distances for each...

ZVY545
Votes: 0
Answers: 0
Calculating euclidean distance in a matrix
I am trying to calculate the euclidean distance in a matrix in C, I saw a similar post and tried it on my own matrix but as it is different I do not know how to make it work. This is my code:
#include...
Ivan Bonilla
Votes: 0
Answers: 0
Create graph from euclidean distances using KNN
import numpy as np
import pandas as pd
import networkx as nx
from scipy.spatial.distance import cdist
from sklearn.neighbors import NearestNeighbors
Given the following array:
A = np.array([[1.25,1.1...

8-Bit Borges
Votes: 0
Answers: 0