How to overwrite an excel file, matlab 2018?
7 ビュー (過去 30 日間)
古いコメントを表示
I need to overwrite an excel file each time write table function runs but I don’t have Matlab 2020. And I cannot delete the file as I am later using it to be uploaded in my app for creating a table in my app.
How can I solve the problem
4 件のコメント
Image Analyst
2023 年 12 月 25 日
Then just call the writetable function over and over again. It will overwrite the existing file.
回答 (1 件)
Sulaymon Eshkabilov
2023 年 12 月 25 日
Here is one code if understood your question correctly:
FName = 'Renew_Table.xlsx';
D = array2table(randi(255, 7, 3))
writetable(D,FName,'Sheet',1);
for ii=1:3
D = readtable(FName);
D{:,:} = D{:,:}*ii;
writetable(D,FName,'Sheet',1);
end
D = readtable(FName)
参考
カテゴリ
Help Center および File Exchange で Data Import from MATLAB についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!