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

採用された回答

the cyclist
the cyclist 2019 年 4 月 16 日
data = csvread('Book4.csv');
idx = find(data);
  3 件のコメント
Kiruthiga Sekar
Kiruthiga Sekar 2019 年 4 月 16 日
How to store the idx in an array?
the cyclist
the cyclist 2019 年 4 月 16 日
idx is a numeric array. See this documentation page for more info.
Did you want something different?

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGet Started with MATLAB についてさらに検索

製品


リリース

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by