Filter löschen
Filter löschen

Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

strange cell array to matrix

2 Ansichten (letzte 30 Tage)
venkat ta
venkat ta am 17 Sep. 2020
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
[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);

Antworten (1)

Mohammad Sami
Mohammad Sami am 18 Sep. 2020
Bearbeitet: Mohammad Sami am 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 Kommentare
venkat ta
venkat ta am 18 Sep. 2020
seems delimitedTextImportOptions function isnot available at R2018a!
Mohammad Sami
Mohammad Sami am 18 Sep. 2020
You can then replace it with detect import options function. https://www.mathworks.com/help/matlab/ref/detectimportoptions.html

Diese Frage ist geschlossen.

Tags

Produkte


Version

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by