how can I compute distances:

6 visualizaciones (últimos 30 días)
Robin Kaiser
Robin Kaiser el 27 de En. de 2020
Comentada: Walter Roberson el 28 de En. de 2020
how can I compute distances:
I have a code which was running in matlab 2016:
Nat=1000;
pos=(rand(3, Nat)-0.5);
kr=dist(pos)+eye(Nat);
In my new matlab version (Matlab 2019), it seems to require an additional toolbox?
yours
Robin

Respuesta aceptada

Robin Kaiser
Robin Kaiser el 28 de En. de 2020
Thank you for your fast feedback. I tried and get the following reply:
'pdist' requires Statistics and Machine Learning Toolbox.
yours
Robin
  1 comentario
Walter Roberson
Walter Roberson el 28 de En. de 2020
kr = squeeze(sum((pos - permute(pos, [1 3 2])).^2,1)) + eye(NAT);

Iniciar sesión para comentar.

Más respuestas (3)

Fangjun Jiang
Fangjun Jiang el 27 de En. de 2020
Run the code and then run "license inuse". Only MATLAB is needed.
  2 comentarios
Robin Kaiser
Robin Kaiser el 28 de En. de 2020
after "license inuse" I get
"matlab" as answer, but dist(pos) still does not work. Is this a backward incompatibilty?
Walter Roberson
Walter Roberson el 28 de En. de 2020
It is not a backward incompatibility. dist() was never part of basic MATLAB. You probably had some third-party dist() function.

Iniciar sesión para comentar.


Walter Roberson
Walter Roberson el 27 de En. de 2020
dist() is part of the Deep Learning Toolbox
  2 comentarios
Robin Kaiser
Robin Kaiser el 28 de En. de 2020
I see that
'dist' requires one of the following:
Deep Learning Toolbox
Navigation Toolbox
Robotics System Toolbox
Sensor Fusion and Tracking Toolbox
But I did not have those in my previous matlab version. So this seems to be a backward incompatibility?
Walter Roberson
Walter Roberson el 28 de En. de 2020
No, it implies you used a third-party function before.
If you want to use basic MATLAB, then
kr = squareform(pdist(pos.')) + eye(Nat);

Iniciar sesión para comentar.


Robin Kaiser
Robin Kaiser el 28 de En. de 2020
Thank you: this works
yours
Robin

Productos

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by