K means image clustering with time series data

26 ビュー (過去 30 日間)
Atreyee Mondal
Atreyee Mondal 2020 年 7 月 1 日
コメント済み: Atreyee Mondal 2020 年 7 月 1 日
Hi all,
I am trying to do a clustering in time series using K means. But K means is not supporting high 1D data points. Is there any way I can do the clustering of 10 time series data into 3 different groups using K means?
Thanks in advanced.

採用された回答

KSSV
KSSV 2020 年 7 月 1 日
Let x be your 1D data. Assuming it column vector.
t = 1:length(x);
t = t';
idx = kmeans([t x],3);
  5 件のコメント
KSSV
KSSV 2020 年 7 月 1 日
Try converting your series into 10*n matrix.....and use kmeans.
Atreyee Mondal
Atreyee Mondal 2020 年 7 月 1 日
Thank you so much

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeStatistics and Machine Learning Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by