Can I count the number of integers in an index and store it in a variable?
1 次查看(过去 30 天)
显示 更早的评论
index = find([X] == 1)
If I have an array X and I use index to find the where the value 1 is in the array and it gives me the following output that there are 2 places where the number 1 is found at spot [3;25]
index =
3
25
Can I store the value 2 in a variable that it found 2 integers?
1 个评论
Stephen23
2017-9-17
The find is not required (logical indexing is often much more efficient than using find) The square brackets are also not needed.
nnz(X==1)
采纳的回答
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Matrices and Arrays 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!