How Do I Replace Numbers with Alphabets
6 views (last 30 days)
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"
0 Comments
Answers (2)
Star Strider
on 21 Nov 2022
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{:})
.
2 Comments
See Also
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!