Save output of a for loop in a vector

1 回表示 (過去 30 日間)
basma awad
basma awad 2021 年 8 月 31 日
編集済み: Stephen23 2021 年 8 月 31 日
Hello,
Am doing a for loop cheecking if the i ellement of a vector is equal to the nth element
target = zeros(1,150)';
for i = 4:numel(str)
target= isequal(str(i), str(i-3))
end
how to i save the output of target in one vector ? now it only gives me logic values 0 or 1 and for each i value. I wich to save the output in a row vector
Thank u

回答 (1 件)

Stephen23
Stephen23 2021 年 8 月 31 日
編集済み: Stephen23 2021 年 8 月 31 日
str = 'hello world. eat lots of bananas.';
target = zeros(150,1);
for k = 4:numel(str)
target(k) = isequal(str(k), str(k-3));
end
Checking:
disp(target)
0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

カテゴリ

Help Center および File ExchangeGPU Computing についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by