How to find two arrays of a matrix are equal? and find their location in that matrix??? for example>>> suppose we have a=[1 3 5 6 3 7] how to find which arrays are equal with each other? and find their location??? thank you very much

4 visualizaciones (últimos 30 días)
example:
a=[1 3 5 6 3 7]; how to find that a(2)=a(5)????

Respuesta aceptada

Azzi Abdelmalek
Azzi Abdelmalek el 18 de Ag. de 2014
Editada: Azzi Abdelmalek el 18 de Ag. de 2014
a=[1 3 5 6 3 7]
[b,ii,jj]=unique(a)
[freq,idx]=histc(a,b)
location=arrayfun(@(x) find(a==x),b,'un',0)
out=[{'a' 'frequency' 'location'};[num2cell([b',freq']) location']]
  3 comentarios
vahid torabi
vahid torabi el 18 de Ag. de 2014
the order 'unique' makes the matrix form [1 5 2 6 2 7]>>> [1 2 5 6 7] I don't want to change the position of figures!
Image Analyst
Image Analyst el 18 de Ag. de 2014
vahid, the help has all kinds of information on all the functions. You can consult the help for questions like you just asked, and find answers like this:
[C,ia,ic] = unique(A,setOrder) and [C,ia,ic] = unique(A,'rows',setOrder) return C in a specific order. setOrder='sorted' returns the values (or rows) of C in sorted order. setOrder='stable' returns the values (or rows) of C in the same order as A. If no value is specified, the default is 'sorted'.

Iniciar sesión para comentar.

Más respuestas (1)

Image Analyst
Image Analyst el 18 de Ag. de 2014
There might be very very many elements that occur more than once in the array. I suggest you call histc() to get a count of all values and see which counts are 2 or greater.
a = randi(9, 1, 100)-5 % Sample data
histEdges = unique(a)
counts = histc(a, histEdges)
% Find locations
for k = 1 : length(counts)
if counts(k) >= 2
locations = find(a == histEdges(k))
end
end

Categorías

Más información sobre Shifting and Sorting Matrices 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