How to know the quatity of the number in an array

my data is:
A=[1 1 2 1 1 1 2 1 1 1 3 3 3 1 1 3 4 1 2 1 2 2 1 1 1 1 3 2 2 3 1 7 1 1 1 1 3 1 1 5 2 1 1 1 1 1 1 1 1 1 1 1 4 1 1 2 2 1 2 4 3 4 1 1 2 2 2 1 1 1 1 2 2 3 1 2 2 1 2 2 3 3 3 2 1 2 1 3 3 4 2 1 1 4 1 1 2 1 1 3 1 2 2 1 1 1 1 1 3 3 2 1 3 2 1 2 1 1 2 1 1 2 1 2 1 1 1 2 1 1 1 2 2 1 2 1 1 1 1 1 1 1 1 1 3 2 2 1 1 2 1 1 1 1 1 1 1 2 3 3 2 2 1 1 2 1 1 4 1 1 2 3 1 3 1 1 1 2 2 3 1 2 1 1 3 1 1 2 2 1 ]
I want to know how many times or the quantity of number 1 in my array.
thank you.

1 件のコメント

uncung fgv
uncung fgv 2013 年 5 月 16 日
am I missing this question?
I dont know exactly in english.
I want to know how many times the 1, or 2, or 3 ... is mentioned in that array.

サインインしてコメントする。

 採用された回答

Azzi Abdelmalek
Azzi Abdelmalek 2013 年 5 月 16 日

0 投票

out=sum(A(A==1))

7 件のコメント

uncung fgv
uncung fgv 2013 年 5 月 16 日
Thankyou very much so simple.
Sean de Wolski
Sean de Wolski 2013 年 5 月 16 日
You can skip the extraction:
sum(a==1)
Or:
nnz(a==1)
uncung fgv
uncung fgv 2013 年 5 月 16 日
but why is it wrong when I do it for number 2?
uncung fgv
uncung fgv 2013 年 5 月 16 日
it should be not sum?
Azzi Abdelmalek
Azzi Abdelmalek 2013 年 5 月 16 日
編集済み: Azzi Abdelmalek 2013 年 5 月 16 日
Use the solution of Sean de Wolski
sum(a==2)
uncung fgv
uncung fgv 2013 年 5 月 16 日
actually I want:
how many times alphabet/number/character 2 is mentioned in that array.
not the sum/amount.
uncung fgv
uncung fgv 2013 年 5 月 16 日
yes, thank you. sean de wolski. your answer is hidden.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeMatrix Indexing についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by