how to pick out postion in a vector
3 ビュー (過去 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 件のコメント
参考
カテゴリ
Help Center および File Exchange で Get Started with MATLAB についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!