필터 지우기
필터 지우기

How to adjust a vector using an if function

조회 수: 2 (최근 30일)
Benedikt Wessel
Benedikt Wessel 2018년 9월 17일
댓글: KALYAN ACHARJYA 2018년 9월 18일
Hello every body, below you can find my code. I want to customize the vector A, so if one condition is true the vector A should be adjusted.So a 1 should be added if C is smaller than 0 and a 1 should be subtracted if C is greater than 0. For example: A=[0,0,0,2,2,2,2,....]. But every time my vector A stays the same, only containing 1. Thanks
A= ones(100,1);
B=2*rand(100,1);
C=A-B;
for k=1:length(A);
if C(k)<0
A(k)+1;
else if C(k)>0
A(k)-1;
else A(k)
end
end
end

채택된 답변

KALYAN ACHARJYA
KALYAN ACHARJYA 2018년 9월 17일
편집: KALYAN ACHARJYA 2018년 9월 17일
A=[1 2 -4 0 -10 11] %This is just a example
for k=1:length(A);
if A(k)<0
A(k)=A(k)+1;
elseif A(k)>0
A(k)=A(k)-1;
else
A(k)=A(k)
end
end
disp(A);
  댓글 수: 4
Benedikt Wessel
Benedikt Wessel 2018년 9월 18일
Thank you very much!
KALYAN ACHARJYA
KALYAN ACHARJYA 2018년 9월 18일
My Pleasure @Benedikt

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

추가 답변 (0개)

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by