Problem 43169. Frequency Analysis of Text
Frequency analysis is a common task in cryptoanalysis. It is essentially counting the occurrences of alphabets (regardless of case).
So for example,
s = 'This is a very good day'
frequency = [2 0 0 2 1 0 1 1 2 0 0 0 0 0 2 0 0 1 2 1 0 1 0 0 2 0]
Frequency is organized from a-z.
Please write a program that performs this calculation.
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers36
Suggested Problems
-
Return the largest number that is adjacent to a zero
5342 Solvers
-
Back to basics 4 - Search Path
367 Solvers
-
Test if two numbers have the same digits
243 Solvers
-
07 - Common functions and indexing 3
412 Solvers
-
Find the index of the largest value in any vector X=[4,3,4,5,9,12,0,4.....5]
378 Solvers
More from this Author1
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!