Filter löschen
Filter löschen

merge txt and num back again.

2 Ansichten (letzte 30 Tage)
mirewuti muhetaer
mirewuti muhetaer am 27 Mär. 2020
Kommentiert: Walter Roberson am 27 Mär. 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.

Antworten (1)

Walter Roberson
Walter Roberson am 27 Mär. 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 Kommentare
mirewuti muhetaer
mirewuti muhetaer am 27 Mär. 2020
can you tell me the code of wlswrite by using raw?.
Thanks.
Walter Roberson
Walter Roberson am 27 Mär. 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()

Melden Sie sich an, um zu kommentieren.

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by