필터 지우기
필터 지우기

How to replace zeros in a vector with random segments of the same vector?

조회 수: 6 (최근 30일)
I have a vector with 240000 data points. There are several, 72 elements long segments of zero values in that vector. Now I would like to replace these segments of zeros with random 72 elements long segments from the remaining non zero part of the vector.
Can you help me how can I do it?

채택된 답변

Image Analyst
Image Analyst 2022년 3월 24일
Try this:
% First we need to create the data since the original poster forgot to attach it for us.
% Make random vector with values in the 1-9 range.
v = randi(9, 1, 24000);
% Make 20 stretches of 72 zeros.
startingIndexes = sort(randi(length(v), 1, 20))
for k = 1 : length(startingIndexes)
v(startingIndexes(k) : startingIndexes(k) + 71) = 0;
end
% Now we have our vector and we can begin.
%---------------------------------------------------------------------------------
% First find out what the non-zero values are
% that we can use to plug the regions of zeros.
% tic; % Start timer
availableToUse = unique(nonzeros(v));
% Now plug the zeros with numbers randomly chosen from availableToUse
for k = 1 : length(v)
if v(k) == 0
% It's zero so replace it with a random number chosen from availableToUse.
randomIndex = randi(length(availableToUse), 1, 1);
v(k) = availableToUse(randomIndex);
end
end
% toc % End timer
Time to execute is 0.002 seconds (2 milliseconds).
  댓글 수: 1
Bence Laczó
Bence Laczó 2022년 3월 25일
편집: Bence Laczó 2022년 3월 25일
Thank you very much for the help! I'm really appreciate your kindness!
I think I was not precise when I described my problem. I have to replace the 72 elements long segments of zeros, with random, but existing 72 elements long segments of the remaining data. So not with random single numbers, but with 72 consecutive numbers.
Now I have attached the original data.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Arif Hoq
Arif Hoq 2022년 3월 24일
try this:
A=[1 2 3 0 0 0 4 5 0 0 0 0 0 0 0 0 8 9]'; % any matrix
B=A(A==0); % extract the number of 0
rdnumber=randi([10 20],size(A,2),numel(B)); % generating random number
A(A==0)=rdnumber % replace with random number
A = 18×1
1 2 3 14 14 18 4 5 19 17
  댓글 수: 1
Image Analyst
Image Analyst 2022년 3월 24일
That is not using only the non-zero values to plug the zeros, like I do in my answer. You're including numbers not in the original vector.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by