try to get specific index in table and try to store in table but got empty table

1 回表示 (過去 30 日間)
Khairul nur
Khairul nur 2021 年 1 月 18 日
コメント済み: Khairul nur 2021 年 1 月 18 日
hi, i want to get the last value for each row in 'result' and store into table 'value_centroid'. However i get empty table.
result:
0 0 0 0 0 0 4.03
0 0 0 0 0 0 5.17
ii=1
value_centroid = zeros(1,[])
for cc=ii:k
ii
step2_percluster=kirapercluster(ii,centroid,k)
result=array2table(step2_percluster)
value_centroid(ii,[])=result{ii,end}
ii=ii+1
end
  3 件のコメント
Walter Roberson
Walter Roberson 2021 年 1 月 18 日
A(:,end) is the last value in each row of A
Khairul nur
Khairul nur 2021 年 1 月 18 日
i manage to get what i want by below code, btw tq for the time and noticing my question :)
for cc=1:k
step2_percluster=kirapercluster(cc,centroid,k)
result=array2table(step2_percluster)
iii(:,cc)=result(:,end)
end

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

回答 (0 件)

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by