How can I count how many numbers are different from '-1'?
1 次查看(过去 30 天)
显示 更早的评论
Hi,
Example: Suppose we a have a matrix A
A= [1 -1 0 -1 0 0 -1 0 -1 -1 -1 -1 -1 -1 -1]
How can I count how many numbers are different from '-1'?
2 个评论
Shubhashree Bal
2019-11-1
Search for how many negative number exists in A. than subtract that from length of array. Or Write a loop for how many positive number exists in array.
Code attached below:
Close all;
clear all;
A= [1 -1 0 -1 0 0 -1 0 -1 -1 -1 -1 -1 -1 -1];
count = 0;
for i = 1: length(A)
if(A(i)>=0)
count = count +1;
end
end
回答(2 个)
Pedro Martinez
2019-11-1
Total = sum (A==-1);
1 个评论
Walter Roberson
2019-11-5
That gives the number of rows of -1 but the user wants the number of columns that are not -1
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Operators and Elementary Operations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!