How Do I Replace Numbers with Alphabets
6 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentare
Antworten (2)
Star Strider
am 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 Kommentare
Siehe auch
Kategorien
Mehr zu Large Files and Big Data finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!