フィルターのクリア

I have 2D matrix and I want to cluster it to three groups of data

3 ビュー (過去 30 日間)
Abdullah
Abdullah 2017 年 4 月 22 日
コメント済み: Abdullah 2017 年 4 月 22 日
I have 2D matrix and I want to cluster it to three groups of data based on the range of the data, what clustering method could help me ?

回答 (1 件)

KSSV
KSSV 2017 年 4 月 22 日
A = rand(100) ;
set1 = A(A>0 & A<=0.4) ;
set2 = A(A>0.4 & A<=0.8) ;
set3 = A(A>0.8 & A<=1) ;
  1 件のコメント
Abdullah
Abdullah 2017 年 4 月 22 日
Thanks KSSV for your reply, your method is setting a manual range, I want to use clustering method to cluster the matrix into three groups based on that matrix numbers.

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

カテゴリ

Help Center および File ExchangeCluster Analysis and Anomaly Detection についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by