merge txt and num back again.

3 views (last 30 days)
mirewuti muhetaer
mirewuti muhetaer on 27 Mar 2020
Commented: Walter Roberson on 27 Mar 2020
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.

Answers (1)

Walter Roberson
Walter Roberson on 27 Mar 2020
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 Comments
mirewuti muhetaer
mirewuti muhetaer on 27 Mar 2020
can you tell me the code of wlswrite by using raw?.
Thanks.
Walter Roberson
Walter Roberson on 27 Mar 2020
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()

Sign in to comment.

Tags

Community Treasure Hunt

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

Start Hunting!