필터 지우기
필터 지우기

Clustering with big data

조회 수: 1 (최근 30일)
Filipa Cardoso
Filipa Cardoso 2018년 7월 17일
댓글: Filipa Cardoso 2018년 8월 14일
I have a vector with 5 million distances [5000000*1] obtained by using the pdist function and the goal is to do hierarchical cluster analysis. However when i use the linkage function i get the following error:
Error using linkage (line 240) Requested 1x12081952473360 (90017.6GB) array exceeds maximum array size preference. Creation of arrays greater than this limit may take a long time and cause MATLAB to become unresponsive. See array size limit or preference panel for more information.
I would like to know how to avoid this error and if that's not possible, which function I should use to make the cluster analysis.
Thanks in advance.

채택된 답변

Bernhard Suhm
Bernhard Suhm 2018년 8월 6일
Maybe you are using the LINKAGE function incorrectly. You already has the pairwise distances, but for some reason the LINKAGE function thinks that you are passing the samples (X), not the distances (Y). LINKAGE should not have a trouble linking 5,000,000 distances, probably it is a matter of just putting the distances in the right form.
  댓글 수: 2
Bernhard Suhm
Bernhard Suhm 2018년 8월 10일
Also, the input to linkage needs to have the same format as the output of pdist function. Maybe you need to transpose your distance input...
Filipa Cardoso
Filipa Cardoso 2018년 8월 14일
I was indeed using the linkage function wrong since i was transposing the output of the pdist function.

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

추가 답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by