Clear Filters
Clear Filters

Assigning letters to numbers

1 view (last 30 days)
Martin
Martin on 7 Dec 2023
Commented: Voss on 7 Dec 2023
Hi, I have a simple question. I'm trying to do a Hill Cipher decryption as a project, and I wanted to add "space" as 0, and start A as 1, all the way through Z as 26, so that the cipher will be done with mod27 instead. I could get my alphabets
alphabets = 'A':'Z';
Map(alphabets) = 1:length(alphabets);
But I would like to start from "space" as 0.

Accepted Answer

Voss
Voss on 7 Dec 2023
alphabets = [' ', 'A':'Z'];
Map(alphabets) = 0:numel(alphabets)-1;

More Answers (0)

Categories

Find more on Programming in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!