strange cell array to matrix

[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);

Risposte (1)

Mohammad Sami
Mohammad Sami il 18 Set 2020
Modificato: Mohammad Sami il 18 Set 2020
Use the function readtable (or readmatrix) to load your file.
opts = delimitedTextImportOptions('NumVariables',2,'Delimiter',';','DataLines',5);
A1 = readtable(File,opts);

2 Commenti

venkat ta
venkat ta il 18 Set 2020
seems delimitedTextImportOptions function isnot available at R2018a!
You can then replace it with detect import options function. https://www.mathworks.com/help/matlab/ref/detectimportoptions.html

Questa domanda è chiusa.

Prodotti

Release

R2018a

Tag

Richiesto:

il 17 Set 2020

Chiuso:

il 20 Ago 2021

Community Treasure Hunt

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

Start Hunting!

Translated by