convert character array to cell
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Rashmil Dahanayake
am 6 Aug. 2014
Beantwortet: AJ von Alt
am 6 Aug. 2014
Hi, I'm trying to generate a file list using a system command.
[status ,out]=system('dir mat')
The format of the variable is in char format. How can I save this in a cell, to display each line in a new row of the cell.
0 Kommentare
Akzeptierte Antwort
AJ von Alt
am 6 Aug. 2014
You can use strsplit to split the string into cells. For your output, you can use the line feed character char(10) as the delimiter, so a new cell is created for each new line.
out_cell = strsplit(out,char(10))';
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu String finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!