assigning value to character and that value is assigned in the pattern
8 views (last 30 days)
Show older comments
sonam s
on 24 Dec 2013
Answered: Walter Roberson
on 24 Dec 2013
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.
2 Comments
Accepted Answer
Walter Roberson
on 24 Dec 2013
pats = {'00100101';'10100100'};
this_char = 'a';
pats{this_char - 'a' + 1}
0 Comments
More Answers (0)
See Also
Categories
Find more on Denoising and Compression in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!