Azzera filtri
Azzera filtri

Creating vectors stings of letters such as names

1 visualizzazione (ultimi 30 giorni)
If my input was qwerty (for example) how do I convert this into a vector [q w e r t y]

Risposta accettata

dpb
dpb il 8 Nov 2015
It already is a vector--
>> s='qwerty';
>> whos s
Name Size Bytes Class Attributes
s 1x6 12 char
>> s(1)
ans =
q
>> s(1)
ans =
q
>>

Più risposte (0)

Categorie

Scopri di più su Numeric Types 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!

Translated by