Kmeans does not accept complex numbers
조회 수: 5 (최근 30일)
이전 댓글 표시
Why do Matlab says that kmeans does not accept complex data when my data are not complex numbers?
댓글 수: 2
KSSV
2019년 6월 20일
May be your data has a complex number.
Check:
nnz(~isreal(data))
If the above gives some number, it means your data has complex numbers.
Walter Roberson
2019년 6월 20일
Put a condition breakpoint on the line that calls kmeans, testing your data. Suppose that your data to be clustered is named Data, then the breakpoint condition could be
any(imag(Data(:)))
and run your code. The problem does not necessarily happen immediately.
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Statistics and Machine Learning Toolbox에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!