フィルターのクリア

How to count no of iterations of first digit.

1 回表示 (過去 30 日間)
Vishal Sharma
Vishal Sharma 2017 年 1 月 23 日
回答済み: the cyclist 2017 年 1 月 23 日
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
the cyclist 2017 年 1 月 23 日
Is that column guaranteed to be two-digit numbers, or could it be
a = [ 11 3;
121 4]
?
Vishal Sharma
Vishal Sharma 2017 年 1 月 23 日
Two digits only

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

採用された回答

Stephen23
Stephen23 2017 年 1 月 23 日
編集済み: Stephen23 2017 年 1 月 23 日
Assuming that there are always two digits:
>> a = [11 3;
12 4;
13 3;
21 2;
22 5;
23 6;
24 3]
>> tmp = fix(a(:,1)/10);
>> uni = unique(tmp);
>> cnt = histc(tmp,uni)
cnt =
3
4
>> [uni,cnt]
ans =
1 3
2 4

その他の回答 (1 件)

the cyclist
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])'

カテゴリ

Help Center および File ExchangeAssembly についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by