Azzera filtri
Azzera filtri

Assigning letters to numbers

1 visualizzazione (ultimi 30 giorni)
Martin
Martin il 7 Dic 2023
Commentato: Voss il 7 Dic 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.

Risposta accettata

Voss
Voss il 7 Dic 2023
alphabets = [' ', 'A':'Z'];
Map(alphabets) = 0:numel(alphabets)-1;
  2 Commenti
Martin
Martin il 7 Dic 2023
Thank you!!
Voss
Voss il 7 Dic 2023
You're welcome!

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Programming in Help Center e File Exchange

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by