how i can get the first and second letters in cell data
Ältere Kommentare anzeigen
hello all;
i want to get the first and second letters of each row
letters={'Aliadan';'FadumoHassan'; 'Buraaleabi';'kadradahir'};
so, how i can assign first charac of each row in one vector and the second character in each row in another vector.
Akzeptierte Antwort
Weitere Antworten (2)
Purushottama Rao
am 16 Mai 2015
Bearbeitet: Purushottama Rao
am 16 Mai 2015
for k=1:4
f(k)=letters{k}(1);
end
for k=1:4
g(k)=letters{k}(2);
end
singh
am 16 Mai 2015
for k=1:length(letters)
f(k)=letters{k}(1)
g(k)=letters{k}(2)
end
Kategorien
Mehr zu Cell Arrays finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!