Write Data to txt file from Excel

조회 수: 6 (최근 30일)
Rounak Saha Niloy
Rounak Saha Niloy 2022년 3월 17일
편집: Arif Hoq 2022년 3월 17일
I have some data in cell D3:D10 in an excel file. I want to write these particular data in a txt file. How do I do that?
  댓글 수: 2
Walter Roberson
Walter Roberson 2022년 3월 17일
편집: Walter Roberson 2022년 3월 17일
Is it numeric data?
Is it required that the MATLAB program instruct Excel to write the data, or would it instead be acceptable to read the data into MATLAB and have MATLAB write the data?
Rounak Saha Niloy
Rounak Saha Niloy 2022년 3월 17일
  1. Yes, numeric data.
  2. Read data into MATLAB and then MATLAB writes data - this should be the case.

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

채택된 답변

Arif Hoq
Arif Hoq 2022년 3월 17일
편집: Arif Hoq 2022년 3월 17일
try this:
A=readtable('data.xlsx','ReadvariableName',false);
writetable(A,'myfile.txt')
or
B=readmatrix('data.xlsx');
writematrix(B,'myfile2.txt')
  댓글 수: 2
Rounak Saha Niloy
Rounak Saha Niloy 2022년 3월 17일
I have data in various other cells of that excel file. I want to write data of only the mentioned cells i.e. D3:D10.
Arif Hoq
Arif Hoq 2022년 3월 17일
편집: Arif Hoq 2022년 3월 17일
jsut use this:
A=readtable('data.xlsx','ReadvariableName',false,'Range','D3:D10');
or
B=readmatrix('data.xlsx','Range','D3:D10');

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

추가 답변 (0개)

카테고리

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

태그

제품


릴리스

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by