this is my equation using matlab , i can't get it manually.
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
maatoug ayoub
el 19 de Abr. de 2018
Comentada: maatoug ayoub
el 19 de Abr. de 2018
dmat = reshape(sqrt(sum((xy(a,:)-xy(a',:)).^2,2)),N,N);
5 comentarios
Respuesta aceptada
njj1
el 19 de Abr. de 2018
Editada: njj1
el 19 de Abr. de 2018
This looks like it's the distance from each (x,y) pair to every other (x,y) pair.
A_{i,j} = \sqrt{(x_i - x_j)^2}, where x = (x,y)
4 comentarios
njj1
el 19 de Abr. de 2018
Yes, it is, but they do it in a clever, vectorized way, where they do not have any for loops to cycle through each i,j.
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!