Info

此问题已关闭。 请重新打开它进行编辑或回答。

How can I get MATLAB to output a part of a dat file the proper way?

1 次查看(过去 30 天)
I want my output to come out exactly as shown in the attached picture. How can I do this?
This is my code:
clear all;
clc;
tempdata = fopen('rec0506a.dat','r') ;
fgetl(tempdata);
fgetl(tempdata);
T = fscanf(tempdata, '%*f %f %f %f \n')
fclose(tempdata);
  2 个评论
Geoff Hayes
Geoff Hayes 2015-10-25
Ruten9 - you did not attach a picture. Please make sure that you press the Attach File button once you have chosen your file. Also, please describe the format of your text file. Does each row have four floating point numbers that are delimited by a space character? Are the first two lines header rows that you wish to exclude (which explains the two calls to fgetl)?

回答(1 个)

Geoff Hayes
Geoff Hayes 2015-10-25
编辑:Geoff Hayes 2015-10-25
Ruten9 - why not try using importdata where you can specify the delimiter and the number of header rows (to ignore). For example, try using the following
A = importdata('rec0506a.dat', ' ', 2);
where we assume that the column separator is the space character and that there are there are two header lines. (This assumes that your dat file is ASCII.)

标签

Community Treasure Hunt

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

Start Hunting!

Translated by