merge txt and num back again.

3 次查看(过去 30 天)
mirewuti muhetaer
mirewuti muhetaer 2020-3-27
Hi,
i get the num and txt by using following code:
[num, txt]=xlsread('david.xls');
after i deal with some other process and filled the empty num with numbers, then i want to merge the num and txt back again and save it in the excel format.
But i could not find any helpful approach.
Thanks.

回答(1 个)

Walter Roberson
Walter Roberson 2020-3-27
If you must use xlsread() then use the third output of xlsread(), often known as raw, which will be a cell in which each entry that could be converted to numeric has been converted, and all others are text. You would then manipulate the cell array, and eventually xlswrite() the cell array.
However these days we firmly recommend that you use readtable() instead, and manipulate the table entries, and then writetable()
  2 个评论
mirewuti muhetaer
mirewuti muhetaer 2020-3-27
can you tell me the code of wlswrite by using raw?.
Thanks.
Walter Roberson
Walter Roberson 2020-3-27
xlswrite('new_david.xls',YourCellArray)
Note: you will not be able to write a cell with xlswrite unless you are using Windows with Excel installed. Otherwise you will need to use writetable() or writecell()

请先登录,再进行评论。

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by