Info
Cette question est clôturée. Rouvrir pour modifier ou répondre.
strange cell array to matrix
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
[file,path]=uigetfile('*.csv','MultiSelect','on');
if ischar(file) % only 1 file selected
files={file};
end
File = fullfile(char(path),char(file));
I like normal x data and ydata in simple matrix form
[A1,delimiterOut,headerlinesOut] = importdata(File);
0 commentaires
Réponses (1)
Mohammad Sami
le 18 Sep 2020
Modifié(e) : Mohammad Sami
le 18 Sep 2020
Use the function readtable (or readmatrix) to load your file.
opts = delimitedTextImportOptions('NumVariables',2,'Delimiter',';','DataLines',5);
A1 = readtable(File,opts);
2 commentaires
Mohammad Sami
le 18 Sep 2020
You can then replace it with detect import options function. https://www.mathworks.com/help/matlab/ref/detectimportoptions.html
Cette question est clôturée.
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!