Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

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

1 vue (au cours des 30 derniers jours)
Ruten9
Ruten9 le 25 Oct 2015
Clôturé : MATLAB Answer Bot le 20 Août 2021
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 commentaires
Geoff Hayes
Geoff Hayes le 25 Oct 2015
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)?
Ruten9
Ruten9 le 25 Oct 2015
I've attached the file now.

Réponses (1)

Geoff Hayes
Geoff Hayes le 25 Oct 2015
Modifié(e) : Geoff Hayes le 25 Oct 2015
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.)

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by