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 comments
Loading...
Problem Recent Solvers38
Suggested Problems
-
Find all elements less than 0 or greater than 10 and replace them with NaN
15782 Solvers
-
Find the largest value in the 3D matrix
1666 Solvers
-
Vectorize the digits of an Integer
338 Solvers
-
Fahrenheit to Celsius converter
601 Solvers
-
Rounding off numbers to n decimals
5520 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!