How to count no of iterations of first digit.
조회 수: 1 (최근 30일)
이전 댓글 표시
I want to count number of times first digit of first column is repeating. If
a = [11 3;
12 4;
13 3;
21 2;
22 5;
23 6;
24 3];
So, I want to get result in form of 1 = 3 and 2 = 4
댓글 수: 2
the cyclist
2017년 1월 23일
Is that column guaranteed to be two-digit numbers, or could it be
a = [ 11 3;
121 4]
?
채택된 답변
추가 답변 (1개)
the cyclist
2017년 1월 23일
a = [11 3;
12 4;
13 3;
21 2;
22 5;
23 6;
243 3];
a1 = a(:,1);
firstDigits = floor(a1./(10.^floor(log10(a1))));
uniqueFirstDigit = unique(firstDigits);
firstDigitCount = histcounts(firstDigits,[uniqueFirstDigit; Inf])'
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Gas Dynamics에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!