edit-counting the numbers
조회 수: 1 (최근 30일)
이전 댓글 표시
I have some value in a dataset
raw=
>50K
>=50K
>50K ;
;
;
;
;
<=50K
A=sum( strcmp('>50K', raw) )
A2=sum( strcmp('<=50K', raw) )
BUT I GET A ,A2 as zero ,such that i have 32000 rows
댓글 수: 7
TAB
2012년 1월 25일
I don't know what is "raw" and what is it's dimensions.
But try
A=sum(strcmp('>50K', raw{1}))
A2=sum(strcmp('<=50K', raw{1}))
답변 (1개)
Sven Schoeberichts
2012년 1월 25일
I still don't know if you have strings in that dataset or values, but this should give you a starting point:
length( find( dataset == value ))
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!