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 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Kiruthiga Sekar
am 16 Apr. 2019
Kommentiert: the cyclist
am 16 Apr. 2019
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 Kommentare
Akzeptierte Antwort
the cyclist
am 16 Apr. 2019
data = csvread('Book4.csv');
idx = find(data);
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Matrix Indexing finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!