I want to load multiple text files into variable cell array

3 visualizzazioni (ultimi 30 giorni)
Hi
I want to load multiple text files into call array variable and then read the data from it and store them in different variables
For one text file I have followed code given below:(The example text file is uploaded)
filename = 'G:\Matlab/PhaseOneLay Lambda0.2.txt';
startRow = 7;
formatSpec = '%19f%32f%f%[^\n\r]';
fileID = fopen(filename,'r');
textscan(fileID, '%[^\n\r]', startRow-1, 'WhiteSpace', '', 'ReturnOnError', false, 'EndOfLine', '\r\n');
dataArray = textscan(fileID, formatSpec, 'Delimiter', '', 'WhiteSpace', '', 'TextType', 'string', 'ReturnOnError', false);
fclose(fileID);
Phase_table_HFSS = table(dataArray{1:end-1}, 'VariableNames', {'W1mil','ang_degSFP12FP12deg','ang_degSFP22FP12deg'});
clearvars filename startRow formatSpec fileID dataArray ans;
Phase_HFSS = table2array(Phase_table_HFSS);
But how can I load more text files and access their data in the similar way

Risposta accettata

KSSV
KSSV il 29 Ago 2019
files = dir('*.txt') ;
N = length(files) ;
iwant = cell(N,1) ;
for i = 1:N
filename = files(i).name ;
startRow = 7;
formatSpec = '%19f%32f%f%[^\n\r]';
fileID = fopen(filename,'r');
textscan(fileID, '%[^\n\r]', startRow-1, 'WhiteSpace', '', 'ReturnOnError', false, 'EndOfLine', '\r\n');
dataArray = textscan(fileID, formatSpec, 'Delimiter', '', 'WhiteSpace', '', 'TextType', 'string', 'ReturnOnError', false);
fclose(fileID);
Phase_table_HFSS = table(dataArray{1:end-1}, 'VariableNames', {'W1mil','ang_degSFP12FP12deg','ang_degSFP22FP12deg'});
clearvars filename startRow formatSpec fileID dataArray ans;
Phase_HFSS = table2array(Phase_table_HFSS);
iwant{i} = Phase_HFSS ;
end
  2 Commenti
Vinay Killamsetty
Vinay Killamsetty il 30 Ago 2019
Hi
I want to select multiple text files using Uigetfile into call array variable using loop and then read the data from it and store them in different variables
so that I can select required no of files each time and automatically load the file into different cells by running a loop for selected no.of files.
Can you help me how to change the above code.

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Data Import and Export in Help Center e File Exchange

Prodotti


Release

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by