extracting digits from a number
26 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi,
I have a column of numbers with the following format: 12345678 I want to extract digits 56 and digits 78 . in a way similar to the mid and right functions in excel . How can I do so?
0 commentaires
Réponse acceptée
Fangjun Jiang
le 15 Août 2011
a=[1234;12345678;3456];
b=num2str(a);
c=b(:,5:6)
d=b(:,7:8)
e=str2num(c)
f=str2num(d)
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Whos 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!