Remove duplicate values in matrix

74 visualizaciones (últimos 30 días)
captainmariah
captainmariah el 5 de Oct. de 2017
Comentada: captainmariah el 5 de Oct. de 2017
Hi, I have following code:
a_x = 1.5:0.2:a_max;
a_y = 1.5:0.2:a_max;
a = zeros(length(a_x),length(a_y));
for i = 1:length(a_x)
for j = 1:length(a_y)
a(j,i) = (a_x(i)+a_y(j))/2;
end
end
I would like to remove all duplicate values in a, and turn this in a vector with ascending value. Any idea how?

Respuesta aceptada

KL
KL el 5 de Oct. de 2017
Editada: KL el 5 de Oct. de 2017
unique(a) %EDITED
  3 comentarios
KL
KL el 5 de Oct. de 2017
Ah, Thanks Guillaume . Edited!
captainmariah
captainmariah el 5 de Oct. de 2017
Thanks!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Multidimensional Arrays en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by