How would i generalize the following variables
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Feliciano Döring
el 4 de Abr. de 2018
I want to generalize the following variables
dat=norm(A(:,5)-A(:,1));
dbt=norm(A(:,5)-A(:,2));
dct=norm(A(:,5)-A(:,3));
ddt=norm(A(:,5)-A(:,4));
i already tried doing it like this,
dt=norm(A(:,5)-A(:,1:4));
but i want it to calculate for each element, so how would it do it?
0 comentarios
Respuesta aceptada
Matt J
el 4 de Abr. de 2018
Using the attached file,
G = interdists(A)
will return a matrix G(i,j)=norm(A(:,i)-A(:,j)).
Más respuestas (0)
Ver también
Categorías
Más información sobre Structures en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!