フィルターのクリア

Excel to Text Conversion

6 ビュー (過去 30 日間)
Amanda
Amanda 2012 年 8 月 20 日
回答済み: Fabio Alonso Da Silva 2018 年 1 月 11 日
I can convert the excel file to text manually inside of Excel.
However, to make my MATLAB scripts more autonomous and not relying on
another application, I am struggling with converting a .xlsx file to
text inside of MATLAB. Is there a function or routine to convert a
.xlsx file to .txt?
Thanks,
Amanda
  1 件のコメント
Akki
Akki 2014 年 9 月 23 日
Is it possible to convert all sheets of a single excel file using single xlsread command?

サインインしてコメントする。

採用された回答

José-Luis
José-Luis 2012 年 8 月 20 日
編集済み: José-Luis 2014 年 9 月 23 日
The easy way:
Import to matlab using
[numData textData rawData] = xlsread('myFile.xlsx'), %doc xlsread for more details
and then save to text
save('pqfile.txt', 'rawData', '-ASCII'); %replace rawData with the actual data you are actually interested in.
Cheers
  2 件のコメント
Amanda
Amanda 2012 年 8 月 20 日
Thanks a lot.
José-Luis
José-Luis 2012 年 8 月 20 日
No worries.

サインインしてコメントする。

その他の回答 (1 件)

Fabio Alonso Da Silva
Fabio Alonso Da Silva 2018 年 1 月 11 日
It depends ( people do not like this statement in general), but to do a 'xlsread' and a 'save' right after, have in mind that MATLAB will use memory to do so, possibly creating a cell array. Therefore depending on the size of your file, this can become a memory constraint. Another option is to manually save the MATLAB file as text and then read line by line inside MATLAB so you can direct (or control how) each piece of data goes where. It is a way to get rid of empty spaces creating an useless cell, for instance. Depending also on the size of the generated txt file, you might want to create a way to search and load just the pieces of data of interest into your application, this saves memory, but then increases disk access. There is no free lunch.

カテゴリ

Help Center および File ExchangeSpreadsheets についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by