How to extract specific rows & columns from a text file
조회 수: 9 (최근 30일)
이전 댓글 표시
Hi, I would like to read specific column from txt file (values - 4.682,6.050,6.461 and so on) and it have 25 lines. So how can I do it?
Thanks.
Here is the txt file looks like:
2008 1 1 0.00 100.00 0.41873E+11 -1.0 263.9 0.27177E+12 3.208 4.682 -1.000 4.0
2008 1 1 1.00 100.00 0.65528E+11 -1.0 278.2 0.45383E+12 2.997 6.050 -1.000 4.0
2008 1 1 2.00 100.00 0.83093E+11 -1.0 300.3 0.51760E+12 2.763 6.461 -1.000 4.0
댓글 수: 0
채택된 답변
KSSV
2021년 5월 24일
Read about the functions like importdata, load, readmatrix, textscan, readtable.
data = importdata(mytextfile) ;
iwant = data(:,11) ; % give required column of index
댓글 수: 2
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Text Files에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!