How to load a txt file and save the workspace

조회 수: 12 (최근 30일)
영우
영우 . 2023년 9월 22일
댓글: 영우 . 2023년 9월 23일
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?

답변 (1개)

Mathieu NOE
Mathieu NOE 2023년 9월 22일
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

카테고리

Help CenterFile Exchange에서 Workspace Variables and MAT-Files에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by