distinct values for a matrix

I have a matrix of 10x10..i have to find distinct values,,please help..those distinct values must also be a in matrix form..

 採用された回答

Walter Roberson
Walter Roberson 2012 年 1 月 4 日

0 投票

unique() can be used to find distinct values. With the three-output form of unique() you can create a vector of indices into the unique values.

3 件のコメント

kash
kash 2012 年 1 月 4 日
But walter how to get values in a matrix,i need for every column the distinct values and form a matrix
Walter Roberson
Walter Roberson 2012 年 1 月 4 日
The number of unique values could vary from column to column, so the results cannot be placed in to a numeric matrix.
arrayfun(@(IDX) unique(Matrix(:,IDX)), 1:size(Matrix,2), 'Uniform', 0)
kash
kash 2012 年 1 月 4 日
Thank u walter

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by