how i can get the first and second letters in cell data
14 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Mohamuud hassan
il 16 Mag 2015
Modificato: Stephen23
il 16 Mag 2015
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.
0 Commenti
Risposta accettata
Più risposte (2)
Purushottama Rao
il 16 Mag 2015
Modificato: Purushottama Rao
il 16 Mag 2015
for k=1:4
f(k)=letters{k}(1);
end
for k=1:4
g(k)=letters{k}(2);
end
0 Commenti
Vedere anche
Categorie
Scopri di più su Cell Arrays in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!