merge txt and num back again.

조회 수: 3 (최근 30일)
mirewuti muhetaer
mirewuti muhetaer 2020년 3월 27일
댓글: Walter Roberson 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()

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Spreadsheets에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by