Effacer les filtres
Effacer les filtres

Import data from files into variable

4 vues (au cours des 30 derniers jours)
theo
theo le 20 Mar 2021
Commenté : theo le 20 Mar 2021
Hello, I could't store my imported data into single matrix. I have multiple file with text data inside it and want to compile all the data into one file.
Here is the code that i've tried. is there any way to make the S variable save the imported data without deleting the previous imported data?
clear all;
clc;
files=dir('*-*');
N=length(files);
for i=1:N
file=files(i).name;
S=importdata(file);
end

Réponse acceptée

Walter Roberson
Walter Roberson le 20 Mar 2021
clear all;
clc;
files=dir('*-*');
N=length(files);
S = cell(N,1);
for i=1:N
file=files(i).name;
S{i}=importdata(file);
end
  1 commentaire
theo
theo le 20 Mar 2021
thank you for your help

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Data Import and Analysis dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by