want to read 38 csv files only first and second column?
2 views (last 30 days)
Show older comments
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?
Accepted Answer
Sudhakar Shinde
on 27 Oct 2020
Edited: Sudhakar Shinde
on 27 Oct 2020
csvFile = dir("*.csv") ;
N = length(csvFile) ;
for i = 1:N
data = readtable(csvFile(i).name) ;
iwant = data.Points_0;
iwant1 = data.Points_1;
% do what you want
end
2 Comments
Sudhakar Shinde
on 27 Oct 2020
it was typing error.
use csvFile instead of csvFiles. Corrected in above code lines.
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!