필터 지우기
필터 지우기

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 CenterFile Exchange에서 Spreadsheets에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by