필터 지우기
필터 지우기

how can i calculate how many number of times that 1 occurs.

조회 수: 1 (최근 30일)
vetri veeran
vetri veeran 2014년 12월 13일
편집: Azzi Abdelmalek 2014년 12월 13일
I have an array like this
x =
1 2 3 4
1 2 3 4
1 2 3 4
1 2 3 4
how can i calculate how many number of times that 1 occurs.

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2014년 12월 13일
편집: Azzi Abdelmalek 2014년 12월 13일
x=repmat(1:4,4,1) % Example
out=sum(x(:)==1)
%or
out=nnz(x==1)

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Multidimensional Arrays에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by