About unique command problem

1 次查看(过去 30 天)
Hi,
I used unique(A,'rows') to find unique rows of matrix A, however, it has a problem that after picking unique rows, it will order them in a manner. That is bad to my problem, I want to keep the order as originally in A.
Is there a command that prohibits sorting rows but only deleting same rows(reserve the first appearance) in MATLAB?
Thanks

采纳的回答

per isakson
per isakson 2013-4-3
Doc says:
[C,ia,ic] = unique(A,setOrder) and [C,ia,ic] = unique(A,'rows',setOrder) returns
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.
Try
setOrder='stable'
  1 个评论
C Zeng
C Zeng 2013-4-3
Oh, thanks per isakson, I should be familiar with doc myself. :-)

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Special Functions 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by