Count the index of the array

11 Ansichten (letzte 30 Tage)
Mekala balaji
Mekala balaji am 20 Dez. 2014
Kommentiert: madhan ravi am 3 Dez. 2018
Hi, I have a array like below: [0 0 0 0 0 0 0 0 0 10 0 0 0 0 15 0 17]
I want count how many numbers >0 in the array (like in this case count is 3 (because 10,15,&17). Can some please help me how to count this in matlab. Thanks in advance

Akzeptierte Antwort

Azzi Abdelmalek
Azzi Abdelmalek am 20 Dez. 2014
If your array doesn't contain negative numbers
a=[0 0 0 0 0 0 0 0 0 10 0 0 0 0 15 0 17]
out=nnz(a)
  2 Kommentare
Shoaibur Rahman
Shoaibur Rahman am 20 Dez. 2014
nnz will count the number of all non-zero elements in the array, including negatives. So, this function would be a better choice if you want to do so.
Mekala balaji
Mekala balaji am 20 Dez. 2014
Great Thank you sir

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (2)

Shoaibur Rahman
Shoaibur Rahman am 20 Dez. 2014
A=[0 0 0 0 0 0 0 0 0 10 0 0 0 0 15 0 17];
sum(A>0)

Javaid Iqbal
Javaid Iqbal am 3 Dez. 2018
n=numel(A);
  1 Kommentar
madhan ravi
madhan ravi am 3 Dez. 2018
no this would give you total number of elements in the array

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Multidimensional Arrays finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by