필터 지우기
필터 지우기

How can I import one column of data from a txt file into a variable?

조회 수: 11 (최근 30일)
Danielle Blicker
Danielle Blicker 2019년 4월 25일
답변: Mark Sherstan 2019년 4월 25일
How can I import one column of data from a text file into a variable?
I want to import the second column of data from a file called "MyData"
A =importdata('MyData.txt');
f = A.data(:,2);
The following error message appears:
Dot indexing is not supported for variables of this type.
Error in Lab3 (line 3)
f = A.data(:,2);
The column I want to import is a column of numbers (ex. 0.4963)
Thank you in advance!!

답변 (1개)

Mark Sherstan
Mark Sherstan 2019년 4월 25일
Try without the "."
A = importdata('myData.txt');
f = A(:,2)
I also included my .txt file in case you have your set up differently.

카테고리

Help CenterFile Exchange에서 Data Import and Analysis에 대해 자세히 알아보기

제품


릴리스

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by