Why I get the error Index in position 2 exceeds array bounds (must not exceed 1).
3 次查看(过去 30 天)
显示 更早的评论
V = X(;,2)*0.028
File attached is X
0 个评论
采纳的回答
Ameer Hamza
2020-5-8
编辑:Ameer Hamza
2020-5-8
Try this
X = readmatrix('FinalProj_TVdata.csv');
V = X(:,2)*0.028;
Or this if you are using R2018b or earlier.
X = readtable('FinalProj_TVdata.csv');
V = X{:,2}*0.028;
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Matrix Indexing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!