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

2 次查看(过去 30 天)
example:
a=[1 3 5 6 3 7]; how to find that a(2)=a(5)????

采纳的回答

Azzi Abdelmalek
Azzi Abdelmalek 2014-8-18
编辑:Azzi Abdelmalek 2014-8-18
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 个评论
vahid torabi
vahid torabi 2014-8-18
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 2014-8-18
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'.

请先登录,再进行评论。

更多回答(1 个)

Image Analyst
Image Analyst 2014-8-18
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

类别

Help CenterFile Exchange 中查找有关 Shifting and Sorting Matrices 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by