Overwriting a vector to a specific location into CSV file
15 次查看(过去 30 天)
显示 更早的评论
Hi MATLAB experts,
I have csv file here, and want to overwrite a vector in a specific column 'H' and row '4' ('H4') in the spreadsheet called 'sheet1' (while without deleting other data in the same tab). For example, I have a vector as follows:
m = {'a';'b';'c'}
Please teach me cool stuff!! Thanks for any help you can provide in advance.
Best Regards, Jake
0 个评论
采纳的回答
Abhishek Pandey
2015-7-15
编辑:Abhishek Pandey
2015-7-15
Hi Jake! I understand you want to overwrite a vector in a specific column in a CSV file spreadsheet. You can do this using the xlswrite function.
For example, if you want to write the vector ‘m’ to column ‘H4’ in a spreadsheet called ‘sheet1’, you can use the following code:
xlswrite('sheet1.csv', m, 1, 'H4');
Hope this helps!
- Abhishek
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Startup and Shutdown 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!