How Do I Replace Numbers with Alphabets
7 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Réponses (2)
Star Strider
le 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 commentaires
Voir également
Catégories
En savoir plus sur Large Files and Big Data dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!