possible to use logical indexing with an array argument ?
이전 댓글 표시
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
What is wrong with
i=1:15653;
label == i
?
What do you want to do with this?
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Axis Labels에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!