Azzera filtri
Azzera filtri

assigning value to character and that value is assigned in the pattern

2 visualizzazioni (ultimi 30 giorni)
sir,i have defined a pattern['00100101';'10100100'] and an character array chars{'a','b'}; if i give the input character as 'a' then it should be assigned as '00100101'.sir could you help me how to write the code for it.

Risposta accettata

Walter Roberson
Walter Roberson il 24 Dic 2013
pats = {'00100101';'10100100'};
this_char = 'a';
pats{this_char - 'a' + 1}

Più risposte (0)

Community Treasure Hunt

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

Start Hunting!

Translated by