comparison toolboxes/FullBNT-1.0.7/bnt/examples/dynamic/HHMM/Mgram/letter2num.m @ 0:e9a9cd732c1e tip

first hg version after svn
author wolffd
date Tue, 10 Feb 2015 15:05:51 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:e9a9cd732c1e
1 function n = letter2num(l)
2
3 % map a-z to 1:26 and A-Z to 27:52
4 punct_code = [32:47 58:64 91:96 123:126];
5 digits_code = 48:57;
6 upper_code = 65:90;
7 lower_code = 97:122;
8
9 c = double(l);
10 n = c-96;
11 ndx = find(n <= 0); % upper case
12 n(ndx) = c(ndx) - 64 + 26;