possible to use logical indexing with an array argument ?
조회 수: 1 (최근 30일)
이전 댓글 표시
is there a way I can convert this code
for i=1:15653
label == i
end
to a vectorized one ?
i=1:15653;
label == i
댓글 수: 1
채택된 답변
John Chilleri
2017년 1월 17일
편집: John Chilleri
2017년 1월 17일
Hello,
WhateverYouWant = (label == 1:15653);
Note: assuming label is also a 15653 length vector OR a scalar.
Hope this helps!
댓글 수: 2
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!