フィルターのクリア

How to store the data of specific loop values?

1 回表示 (過去 30 日間)
Wolfgang McCormack
Wolfgang McCormack 2021 年 3 月 10 日
コメント済み: Wolfgang McCormack 2021 年 3 月 10 日
Hi,
I have a loop 1:100 and I want to store the output of i = 1,6,11,....
How should I code this?
Thx

採用された回答

Jan
Jan 2021 年 3 月 10 日
編集済み: Jan 2021 年 3 月 10 日
Did you read the Matlab Onramp already?
result = zeros(1, 100); % Pre-allocation
for k = 1:100
result(k) = rand; % your value
end
Or maybe you mean:
index = 1:6:100;
result = zeros(1, numel(index)); % Pre-allocation
for k = 1:100
match = (k == index);
if any(match)
result(match) = rand; % "logical indexing"
end
end
  1 件のコメント
Wolfgang McCormack
Wolfgang McCormack 2021 年 3 月 10 日
@Jan I guess the second part does what I want. Thanks!

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMatrix Indexing についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by