How to write a string to Excel using Matlab.
8 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
sachin k p
am 6 Sep. 2018
Kommentiert: Kevin Chng
am 7 Sep. 2018
I want to write a file name including filepath to an excel file. I am using this code.
path2=['P:\\_Fach\\EF\\UX\\DL\\' py_file];
xlswrite(filename,path2,'Parametertabel','t60:t60');
This code is just writing 'P' to the excel file.
3 Kommentare
Akzeptierte Antwort
Kevin Chng
am 7 Sep. 2018
Put them into cell.
path = {'wewer'};
xlswrite('sss.csv',path);
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Data Import from MATLAB 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!