How to read single value from csv file?
13 次查看(过去 30 天)
显示 更早的评论
In the attached csv file I wnat to read data of column D and E and header of this data from cell A5.
I am able to read data of column D and E using instruction:
data=csvread('Test.csv',0,3);
But, I am not able to read the heading from cell A5.
Please help me on this.
2 个评论
采纳的回答
Omer Yasin Birey
2019-2-12
编辑:Omer Yasin Birey
2019-2-12
Hi Shritesh, I don't think that you can read strings with csvread. But you can use importdata for this
values = importdata('Test.csv');
A5 = values.textdata(5);
It will save the string and doubles in a struct that you can reach them after.
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Spreadsheets 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!