フィルターのクリア

Getting rid of duplicate values in pairwise matrix to obtain single vector?

1 回表示 (過去 30 日間)
Erik J
Erik J 2020 年 2 月 25 日
コメント済み: Erik J 2020 年 2 月 26 日
Hello. I have a large (11000x11000) matrix of pairwise distances between 11000 points. I need to make a histogram of these distances. However, each vaue appears twice (e.g., in 2,2, 3,3 etc). How can I eliminate these duplicates to obtain a single vector of all unique values?
Thank you all so much.

採用された回答

Rik
Rik 2020 年 2 月 25 日
The easiest is the pragmatic approach: get the counts with histcounts and divide that by 2.
X=randn(100,1);
[N,edges] = histcounts(X);
N=N/2;
centers=edges(2:end)-0.5*diff(edges(1:2));
bar(centers,N)

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeData Distribution Plots についてさらに検索

製品


リリース

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by