필터 지우기
필터 지우기

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

조회 수: 6 (최근 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.

댓글을 달려면 로그인하십시오.

Community Treasure Hunt

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

Start Hunting!

Translated by