how can I only display all the data?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Manav Divekar
el 30 de En. de 2022
from this txt fike how can i just get the data and asign to a variable
0 comentarios
Respuesta aceptada
Voss
el 30 de En. de 2022
Editada: Voss
el 30 de En. de 2022
If your version of MATLAB is R2019a or newer, you can use readmatrix():
filename = 'DHD_10%_sec_T1.txt';
data = readmatrix(filename);
format long
data
In older versions (or just as an alternative), you can use fscanf():
filename = 'DHD_10%_sec_T1.txt';
fid = fopen(filename);
for i = 1:8 % skip 8 header lines
fgetl(fid);
end
data = reshape(fscanf(fid,'%g'),3,[]).';
fclose(fid);
format long
data
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Get Started with MATLAB en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!