Assigning value to an element in vector
이전 댓글 표시
The problem is trivial but the code does not work. I wanted to replace 1 by -1 in a matrix
ip = [0 1 1 0;0 0 0 1]
X=find(ip == 1)
for i=1:length(X)
ip(X(i))=-1
end
But this does not work and is beyond my understanding. Is there any logical error here?
댓글 수: 1
Azzi Abdelmalek
2013년 9월 4일
편집: Azzi Abdelmalek
2013년 9월 4일
Your code is correct
Is there any error message? If not what is the result?
답변 (1개)
Walter Roberson
2013년 9월 4일
0 개 추천
Runs correctly for me.
In your actual code, is it possible that what you really have for "1" is not an integer? For example if you were searching for 1.3 ? If so then
카테고리
도움말 센터 및 File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!