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!