How to record result in a for loop nested in a for loop?

5 ビュー (過去 30 日間)
Hong Sheng Lee
Hong Sheng Lee 2020 年 3 月 1 日
コメント済み: Hong Sheng Lee 2020 年 3 月 1 日
The purpose of my code is to combine the output from multiple output which is nested in a for loop.
When i tried (as much as I know), the error "Subscripted assignment dimension mismatch" pops out.
example of the code is as follows:
for i = 1:5
for j = 1:10
matA = [j+i];
matB = [j*5 j+1];
outtemp (j,:) = [matA matB];
end
alpha = i*10;
outfinal (alpha,:) = [outtemp];
end
Thanks in advance.
PS: I tried changing the outfinal into outfinal(i,:), but the same error pops out.

採用された回答

Cameron B
Cameron B 2020 年 3 月 1 日
Not sure what the point of alpha is, but here’s something to save your data.
clc
clear
for i = 1:5
for j = 1:10
matA = [j+i];
matB = [j*5 j+1];
outtemp (j,:) = [matA matB];
end
alpha = i*10;
outfinal (:,:,i) = [outtemp];
end
  1 件のコメント
Hong Sheng Lee
Hong Sheng Lee 2020 年 3 月 1 日
Hi, thank you for the answer. You are a lifesaver.
Kudos for the quick response. (I thought of going home for the day but this keeps me going, thanks a lot!)

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeEntering Commands についてさらに検索

製品


リリース

R2013b

Community Treasure Hunt

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

Start Hunting!

Translated by