how to pick out postion in a vector
조회 수: 1 (최근 30일)
이전 댓글 표시
Hey guys, I have a vector a= [ 1,0,8,0,5,0,3,0,6,9] I want to run a for loop like this for p=1:length(a) if a ==0 spit out where in vector a the zeros are located end end Thanks
댓글 수: 0
답변 (1개)
Azzi Abdelmalek
2013년 5월 10일
편집: Azzi Abdelmalek
2013년 5월 10일
a= [ 1,0,8,0,5,0,3,0,6,9]
idx=find(~a)
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!