copying specific elements of an array to another.

34 ビュー (過去 30 日間)
Leon Ellis
Leon Ellis 2021 年 8 月 21 日
回答済み: Stephen23 2021 年 8 月 21 日
Hi, I want to copy certain values from an array with a known size to an array with an unspesified size based on the critaria.
for i=1:length(y)
if abs(y(i))>0.001
y(i)=g(i);
end
end
So basically, I want to get all values in the array y that are greater than 0.001 to be copied into a seperate array g, but I'm struggling. Thanks in advance!

採用された回答

Stephen23
Stephen23 2021 年 8 月 21 日
Forget about loops, the simple and efficient MATLAB approach is to use logical indexing:
g = y(y>0.001)

その他の回答 (1 件)

Awais Saeed
Awais Saeed 2021 年 8 月 21 日
y = reshape(randn(3)/100,1,[]);
idx = 0;
for col = 1:1:size(y,2)
if (y(col) > 0.001)
idx = idx+1;
g(idx) = y(col); % store values > 0.001 in g
end
end
fprintf('y: ')
fprintf('%f ', y) % original data
fprintf('\ng: ')
fprintf('%f ', g) % values > 0.001

カテゴリ

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

製品


リリース

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by