I have a csv file, which contains some 0 and some non-zero values. How to get the index of the non-zero values in the csv file?
1 次查看(过去 30 天)
显示 更早的评论
Please find the attached file. How to get the index of a non-zero value in the csv file, like i need to get [4 7] in an array, as it has the non-zero values. TIA
0 个评论
采纳的回答
the cyclist
2019-4-16
data = csvread('Book4.csv');
idx = find(data);
更多回答(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!