How to read one column in csv file?

52 次查看(过去 30 天)
In my .csv file have four columns I need to access each 1st column. Is there any matlab code doing easy that kind of task. file data mention in below

采纳的回答

Walter Roberson
Walter Roberson 2018-3-4
The easiest way is to use csvread() to read the entire matrix and then access the first column.
  6 个评论
Walter Roberson
Walter Roberson 2018-3-5
I do not get that result at all.
data = csvread('DOWN.csv');
data(1:10,1)
ans =
1.15
1.196
1.201
1.172
1.138
1.16
1.194
1.213
1.199
1.189

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Get Started with MATLAB 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by