How to use if statements for a vector?

조회 수: 2 (최근 30일)
Gavin Thompson
Gavin Thompson 2021년 9월 28일
댓글: Walter Roberson 2021년 9월 28일
if choice==2
fprintf('Converting Resistance to Color Bands');
R = input('\n\nEnter the resistance in ohms as a vector: ');
% if R(3:end)~=0
% error('Invalid resistance entered. Program terminated.')
% end
ColorBand = Resist2Color(R);
fprintf('The color bands for that resistance are %s, %s, and %s',ColorBand(1),ColorBand(2),ColorBand(3));
end
Here's my code, the part im having trouble with is the commented out section. For example, if R = [1 2 0 0] my code runs fine because the numbers after the first two columns are 0. However, if R = [0 1 0 5] my code still exceutes since MATLAB only cares if any number in my specified range is 0 and disregards those>0. How can I fix this so when there's any number after the first two that doesn't equal 0 the error pops up.

채택된 답변

Walter Roberson
Walter Roberson 2021년 9월 28일
if any(R(3:end)~=0)
It happens that you can abbreviate that to
if any(R(3:end))
  댓글 수: 2
Gavin Thompson
Gavin Thompson 2021년 9월 28일
Awesome, it worked! Do you by chance know to to make R = [1 2] work as well because currently I have it hardcoded to only work for arrays with a length of 3 or more?
Walter Roberson
Walter Roberson 2021년 9월 28일
The code already posted will execute successfully as false if R is length 2.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Axis Labels에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by