Effacer les filtres
Effacer les filtres

write 10 alphabets in one line

1 vue (au cours des 30 derniers jours)
Hamid Bakht
Hamid Bakht le 3 Déc 2016
Modifié(e) : dpb le 4 Déc 2016
how to write a program that writes 10 alphabets in each lines like after J which is the tenth it will switch line and then after T
Thank you for your help

Réponses (1)

dpb
dpb le 3 Déc 2016
Modifié(e) : dpb le 4 Déc 2016
>> sprintf([repmat('%c',1,10) '\n'],'A':'Z')
ans =
ABCDEFGHIJ
KLMNOPQRST
UVWXYZ
>>
ADDENDUM Above returns an string; if only purpose is to either display or write to file, fprintf is more suitable...all depends on what actually after as end result here...

Catégories

En savoir plus sur Language Fundamentals dans Help Center et File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by