Borrar filtros
Borrar filtros

I need a program to read data from a single file

2 visualizaciones (últimos 30 días)
Luís Mira
Luís Mira el 7 de Abr. de 2021
Editada: Jan el 10 de Abr. de 2021
I'm doing a research project for my space weather project, and I have a lot of data files (.21I) separated by folders. With the function "dir" I can now see all the files as a list, but now I need to be able to read the data from a single file. How do I do it?
  4 comentarios
Mathieu NOE
Mathieu NOE el 8 de Abr. de 2021
is this a homework ? did you get any info / advice / request about what you have to do ?
Luís Mira
Luís Mira el 8 de Abr. de 2021
It's for a project I'm working on. Basically, the files are from TEC data (total electron content) and they're separated by 15 minutes from each other. Since there's 8117 files, I was told to build a program to easily choose what I want and then I need to be able to read the files.

Iniciar sesión para comentar.

Respuesta aceptada

Jan
Jan el 8 de Abr. de 2021
Editada: Jan el 8 de Abr. de 2021
Omit the brute clearing header:
close all
clear all
clc
This is not useful in productive code and I cannot imagine why it is recommended such frequently to beginners.
Use a function instead, to keep the workspace clean.
Folder = 'C:\Users\box\Desktop\Projeto Luis\Dados\2021';
FileList = dir(fullfile(Folder, '**', *.21I'));
for iFile = 1:numel(FileList)
File = fullfile(FileList(iFile).folder, FileList(iFile).name);
% Now import this File as needed:
...
end
  2 comentarios
Luís Mira
Luís Mira el 8 de Abr. de 2021
Ok, thanks mate. I'm still learning and I was told since the beggining to do it so, that's why I do it everytime.
Jan
Jan el 8 de Abr. de 2021
Editada: Jan el 10 de Abr. de 2021
Yes, it happens frequently that teachers tell their students to use this brute clearing header. clear all removes all loaded functions from the memory such that they have to be read again from the slow disk. This wastes a lot of time without any benefits. I'm afraid the teachers simply repeat what they have been told when they have been students, although they do not understand, what the code does. This is called "cargo cult programming", which is a widespread programming anti-pattern.

Iniciar sesión para comentar.

Más respuestas (0)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by