Error is generated while using uigetfile while loading text files manually

1 vue (au cours des 30 derniers jours)
Vinay Killamsetty
Vinay Killamsetty le 30 Août 2019
I have to manually select the files which have to be loaded. Each text file is loaded seperately into different cells "Amplitude"and "phase" cell array by using loop.
The text files contains both text and numerical values. Sample text file is uploaded with this question
The data of half of the files are loaded into "Amplitude" cell array and other half into "phase" cell array.
I have followed this code given below: I am getting errors like
Error using load
Number of columns on line 2 of ASCII file
Error in Current_Impedance_9 (line 8)
file = load(fullfile(PathName,FileName{i}));
How to resolve this problem
  2 commentaires
dpb
dpb le 30 Août 2019
Modifié(e) : dpb le 30 Août 2019
Your input file contains header lines which load cannot deal with.
It's not at all clear why you've got that line in there as you then go on to use textscan that knows how to handle formatted text files.
You're doing way more there in the use of options than the file requires, however...something like
fmt=repmat('%f',1,4);
hdrLines=7;
for i = 1:length(FileName)
fid=fopen(fullfile(PathName,FileName{i})),'r');
dataArray=cell2mat(textscan(fid,fmt,'headerlines',hdrLines));
fid=fclose(fid);
end
should load your data array into a double array of Nx4
I'd suggest you might want to look into using the ML table object however, and readtable.
Vinay Killamsetty
Vinay Killamsetty le 31 Août 2019
Thanks a lot. This worked perfectly

Connectez-vous pour commenter.

Réponses (0)

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Produits


Version

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by