How to restore output of for loop in matrix

1 回表示 (過去 30 日間)
muhammad ismat
muhammad ismat 2018 年 9 月 29 日
回答済み: muhammad ismat 2018 年 9 月 29 日
If i have the code
For i=1:10
tmp1=zeros(i,k);
for k=1:2
tmp1(k)=sum((sam(i,:)-cen(k,:)).^2);
end
tmp1
end
i want to store the variable tmp1 in matrix 10× 2

採用された回答

Stephen23
Stephen23 2018 年 9 月 29 日
編集済み: Stephen23 2018 年 9 月 29 日
mat = zeros(10,2);
for ii = 1:10
for jj = 1:2
mat(ii,jj) = sum((sam(ii,:)-cen(jj,:)).^2);
end
end

その他の回答 (1 件)

muhammad ismat
muhammad ismat 2018 年 9 月 29 日
Thank you very much

カテゴリ

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