How Do I Replace Numbers with Alphabets
Show older comments
I'm learning MATLAB and I want to know how i can change my code so instead of using:
n = 1:6 which displays '1, 2, 3, 4, 5, 6' and loops, for i = 1:n, which loops number sequence,
How do I substitute these with letters like "ABCDEF" or even a word such as "FORMAT"
Answers (2)
The solution is trivial: Simply write it down using CHAR vectors (not strings, which are enclosed in double quotes):
n = 'ABCDEF'
for k = 'FORMAT'
disp(k)
end
Use arrays —
w1 = {'A','B','C','D','E','F'};
w2 ='ABCDEF';
w3 = ["F","O","R","M","A","T"];
for k = 1:6
L1{k,:} = w1{k}
end
for k = 1:6
L2{k,:} = w2(k)
end
for k = 1:6
L3{k,:} = w3(k)
end
Lic = cat(2,L1{:})
L2c = cat(2,L2{:})
L3c = cat(2,L3{:})
.
Categories
Find more on Large Files and Big Data 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!