Write/Read CSV file
8 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I'm trying to write table into a CSV file that looks like the following:
Row 1 will be kept the same, then the other rows will be added to the file while the script is running (or added at once at the end).
I tried using writetable, csvwrite, etc... but it does not come out to what I want, and I am having trouble creating a matrix with text.
Please help. Thanks.
2 Kommentare
Geoff Hayes
am 2 Jul. 2019
Peng - please clarify what you mean by but it does not come out to what I want. Does something get written to file? Is some data overwritten by other data? What code have you written?
Antworten (2)
Chirag Nighut
am 2 Jul. 2019
To create a matrix with text you can create a 2D array of chars. To do that you can use the following code:
data = ['MATLAB ';'SIMULINK ';'POLYSPACE'];
celldata = cellstr(data)
chr = char(celldata)
Although before using char you should check if celldata is cell array of character vetors. Following function can help you
iscellstr
I request you to post the exact error/difficulty that you got using csvwrite and writetable. I can then try to help you get the desired results.
1 Kommentar
Kaustav Bhattacharya
am 2 Jul. 2019
Look at the append data section of this link. https://in.mathworks.com/help/matlab/ref/dlmwrite.html
Siehe auch
Kategorien
Mehr zu Text Files 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!