필터 지우기
필터 지우기

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

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Get 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