Filter löschen
Filter löschen

Creating vectors stings of letters such as names

2 Ansichten (letzte 30 Tage)
KA
KA am 8 Nov. 2015
Beantwortet: dpb am 8 Nov. 2015
If my input was qwerty (for example) how do I convert this into a vector [q w e r t y]

Akzeptierte Antwort

dpb
dpb am 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
>>

Weitere Antworten (0)

Kategorien

Mehr zu Numeric Types finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by