필터 지우기
필터 지우기

Separate data into matrices and plot

조회 수: 1 (최근 30일)
Melvin
Melvin 2013년 6월 4일
Good afternoon,
I am working with .txt files that contain multiple "receivers" of data, that is, multiple sets of data coming from the same specimen. I would like to separate these receivers into different matrices, and plot each matrix. Each matrix is [rx2], and the receivers are separated by a row that specifies the beginning of the next receiver. I am able to read the text file but my code cannot differentiate between strings and numbers. How can I separate my data?
  댓글 수: 2
Kye Taylor
Kye Taylor 2013년 6월 4일
What function are you using to read the data in? Can you provide us the command and the size and type (or class) of the output?
Jonathan Sullivan
Jonathan Sullivan 2013년 6월 4일
Post a sample of your .txt file.

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

답변 (1개)

Julius
Julius 2013년 6월 10일
I recommend using "readtext" function from File Exchange (<http://www.mathworks.com/matlabcentral/fileexchange/10946-readtext)>.
Using this command to call "readtext":
the_data = readtext('sample.txt');
Then the_data is a n-by-1 cell array, where n is the total number of rows in your TXT file, including the blank row. The blank row becomes an empty cell element in the cell array. Identify those empty cell elements and you can separate data from different receivers.

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by