python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
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
Extended Euclidean algorithm with polynomials
I need to implement an extended Euclidean algorithm for polynomials to get coefficients of Bézout's identity. The problem is I'm struggling with the correct implementation of such a function. I've fou...
Dženkou
Votes: 0
Answers: 0
Compute Euclidian distance in 100 dimensions between many points: how to be fast?
I have a Pandas DataFrame of 2 million entries
Each entry is a point in a 100 dimensional space
I want to compute the Euclidian distance between the N last points and all the others to find the cl...
Vincent
Votes: 0
Answers: 4
Python - Print steps of an extended euclidean algorithm
Here is the current extended euclidean algorithm I found online :
def euclideEtendu(bNombre, aModulo):
""" Algorithme d'Euclide étendu, permettant de connaître:
PGCD
...
Lukas Apple Fan
Votes: 0
Answers: 0