I have the cell array of number matrices as follows:
c= {[1,2,3,4] [1,2,4,3] [1,3,2,4]}
Denoted that 1=A, 2=B, 3=C,4=D.How can I convert c into the cell array of strings as follows?
s= {[A,B,C,D] [A,B,D,C] [A,C,B,D]}
And how can we generalize this rule such as 1 to 7 and A to G ... ?
s = {['A', 'B', 'C', 'D'], ['A', 'B', 'C', 'D'], ['A', 'B', 'C', 'D']}