Creating a new string matrix
Ältere Kommentare anzeigen
Can ['abc';'ef';'xyz'] be used to create a new string matrix
1 Kommentar
The matrix ['abc';'ef';'xyz'] cannot exist in Matlab to begin with.
>> ['abc';'ef';'xyz']
Dimensions of arrays being concatenated are not consistent.
Akzeptierte Antwort
Weitere Antworten (1)
Bruno Luong
am 15 Okt. 2018
Bearbeitet: Bruno Luong
am 15 Okt. 2018
I will pad appropriate number of ascii-0 characters to the tail of the shorter strings to make them a matrix.
>> char({'abc';'ef';'xyz'})
ans =
3×3 char array
'abc'
'ef '
'xyz'
>>
Kategorien
Mehr zu Characters and Strings finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!