Borrar filtros
Borrar filtros

How to load a txt file and save the workspace

4 visualizaciones (últimos 30 días)
영우
영우 el 22 de Sept. de 2023
Comentada: 영우 el 23 de Sept. de 2023
I have txt files numbered like data_1, data_2, data_3 data_4..
And I want to load these files into workspace named 1, 2,3,4. How should I write the code?

Respuestas (1)

Mathieu NOE
Mathieu NOE el 22 de Sept. de 2023
you can create a structure D where all informations are stored (filenames and data)
D = dir('*.txt'); % D is a structure array
for k = 1:numel(D)
D(k).data = readmatrix(D(k).name);
end

Categorías

Más información sobre Workspace Variables and MAT-Files en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by