how find frequency of a number from an array where we can specify the length in which frequency must be checked

4 ビュー (過去 30 日間)
i have array of numbers (854 numbers), so to check the frequency of numbers in the length which we specify.
  2 件のコメント
Birdman
Birdman 2018 年 2 月 14 日
You want to find index of the frequency? Share your data.
M ANBUCHELVI
M ANBUCHELVI 2018 年 3 月 1 日
i want frequency of 1,2,3 in the given xl sheet for a given index

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

採用された回答

ES
ES 2018 年 2 月 14 日
function freqCnt = findFrequencyofNumber(arrayInput, startidx, endidx, number2bechecked)
tempArray = arrayInput(startidx:endidx);
freqCnt = sum(tempArray == number2bechecked);
end
To call,
>> freqCnt = findFrequencyofNumber([1,2,3,[1:10]], 1, 7, 3)
freqCnt =
2

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeOperators and Elementary Operations についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by