フィルターのクリア

Read cells of .xlsx file and save a .txt file

2 ビュー (過去 30 日間)
Márcio Marques
Márcio Marques 2017 年 3 月 23 日
回答済み: KSSV 2017 年 3 月 24 日
Hello evebody,
I need read one column of cells from .xlsx file and then write to a .txt file.
Anyone can help me please?
thank you very much.

回答 (1 件)

KSSV
KSSV 2017 年 3 月 24 日
% make some excel file
data = rand(10) ;
xlswrite('junk.xls',data) ;
% read the first column in excel file
[num,txt,raw] = xlsread('junk.xls','A:A') ;
% write to text file
save 'data.txt' num -ascii
There are other methods to save file. You may check fprintf, save, dlmwrite, etc.

カテゴリ

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