Problem with if statement

조회 수: 1 (최근 30일)
Adam Dutkiewicz
Adam Dutkiewicz 2021년 5월 16일
댓글: Adam Dutkiewicz 2021년 5월 16일
minval=0
maxval=1
r=[0,1,2,3,4]
for i:1:length(r)
if r(i)>=minval & r(i) maxval>=r(i)
disp('Value within specified range.')
elseif (r > maxval)
disp('Value exceeds maximum value.')
r(i)=()
else
disp('Value is below minimum value.')
r(i)=()
end
end
r
So this is a body of a program that i want to use in some bigger one, but my problem is that everytime i want to compute it i get error:
" invalid left hand side of assignment
>>> if r(i)>=minval & r(i) maxval>=r(i)
^"
I have no clue what's wrong with this code, I'm pretty sure i used exactly the same code in the past and it was working, anyone has idea what I'm doing wrong?

채택된 답변

David Fletcher
David Fletcher 2021년 5월 16일
편집: David Fletcher 2021년 5월 16일
There are numerous errors in the code, the condition on the if statement makes no sense I assume you mean:
if r(i)>=minval & maxval<=r(i)
The for loop syntax is invalid, I assume you mean
for i=1:1:length(r)
These lines in the alternative conditionals are invalid syntax (and even if they were valid I have no idea what their purpose is) - maybe a filter to omit out of range values from the input vector? If this is the case it wouldn't work - you would be better off building a new vector containing valid values, rather than delete values from the existing vector since this will make the vector smaller and lead to an indexing error as the loop progresses through the vector.
r(i)=(); %maybe you mean r(i)=[], but this wouldn't work in the context of this program
  댓글 수: 1
Adam Dutkiewicz
Adam Dutkiewicz 2021년 5월 16일
Thank you very much it worked! I also used your suggestion to create a new variable to store the values, you are right that's better to do in this way.
Thank you very much again

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by