want to read 38 csv files only first and second column?
Mostra commenti meno recenti
Hi,
I want to read first and second coloumn of the 48 .csv files then plot the data from them coloumns. Once data plotted seaparately then want to apply the circle algoritham to it which will give me the estimated radius of the circle in list or array then I want to plot them against time?
Can you guys help I do not know how to read column 1 and 2 of them 48 files?
3 Commenti
Sudhakar Shinde
il 27 Ott 2020
readmatrix, csvread or readtable could help you to read csv file. For more specific if you could add example csv file data and the 48 csv filenames, hopefully names are in serial form ex. file1.csv ,file2.csv and so on.
muhammad choudhry
il 27 Ott 2020
Modificato: muhammad choudhry
il 27 Ott 2020
muhammad choudhry
il 27 Ott 2020
Risposta accettata
Più risposte (1)
csvFiles = dir("*.csv") ;
N = length(csvFiles) ;
for i = 1:N
data = csvread(csvFiles(i).name) ; % also read about xlsread
iwant = data(:,1:2) ; % read first two columns
% do what you want
end
4 Commenti
dpb
il 27 Ott 2020
If all is wanted/needed is the first two columns, may as well just write
data=data(:,1:2) ; % keep only first two columns
and not have duplicated/unwanted data hanging around...
muhammad choudhry
il 27 Ott 2020
Sudhakar Shinde
il 27 Ott 2020
Name of csv file contains multiple dots , example: contours0.90.csv and looks like csvread producess error for this.
KSSV
il 27 Ott 2020
There is a typo error..edited the code.....
Categorie
Scopri di più su Environment and Settings in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!