replace the repeated number in a given sequence with value of zero

조회 수: 1 (최근 30일)
Kundan Prasad
Kundan Prasad 2022년 2월 15일
답변: DGM 2022년 2월 15일
Dear Sir/Madam,
I want to replace the value of Z2,Z4,Z6,Z7,Z9,Z10,Z12,Z13... and so on with value of zero.
I have attached the same.
Thank you
r=22.5;
R=linspace(0,10,10);
x=repelem(R,3);
z=-(r-sqrt(r^2-R.^2));
Z=repelem(z,3);
Z(2:3:end)= Z(2:3:end)-1.04;
plot(R,z,'.');hold on
plot(x,Z,'-');
output

채택된 답변

DGM
DGM 2022년 2월 15일
This can probably be simplified, but eh.
r=22.5;
R=linspace(0,10,10);
x=repelem(R,3);
z=-(r-sqrt(r^2-R.^2));
Z=repelem(z,3);
Z(2:3:end)= Z(2:3:end)-1.04;
plot(R,z,'.');hold on
plot(x,Z,'-');
Z0 = Z;
tol = 1E-15; % or pick some tolerance
uz = unique(Z);
for k = 1:numel(uz)
idx = find(abs(Z-uz(k))<tol);
if numel(idx)>1
Z(idx(2:end)) = 0; % get rid of the rightmost instances
%Z(idx(1:end-1)) = 0; % get rid of the leftmost instances
end
end
[Z0' Z']
ans = 30×2
0 0 -1.0400 -1.0400 0 0 -0.0275 -0.0275 -1.0675 -1.0675 -0.0275 0 -0.1100 -0.1100 -1.1500 -1.1500 -0.1100 0 -0.2483 -0.2483
Z now only contains unique values.
If the duplicate values are created with a known period, it may suffice to directly remove them without the need for comparison.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by