How can I remove successive repeated numbers (column wise) from a matrix?

1 次查看(过去 30 天)
For example If I have a matrix like this
A = [11 35 57 45 94;
26 45 69 45 86;
58 45 39 96 35;
87 59 64 56 45]
The output should be a column vector (i have just showed transpose of it)
[11 26 58 87 35 45 59 57 69 39 64 45 96 56 94 86 35 45]'
I have tried to use unique() function but, the output it gives is
[11 26 58 87 35 45 59 57 69 39 64 96 56 94 86]'

采纳的回答

Ameer Hamza
Ameer Hamza 2020-12-6
编辑:Ameer Hamza 2020-12-6
Easy peasy
A = [11 35 57 45 94;
26 45 69 45 86;
58 45 39 96 35;
87 59 64 56 45]
B = A(:);
or
B = reshape(A, [], 1)
  6 个评论

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by