Borrar filtros
Borrar filtros

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 visualización (últimos 30 días)
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

Respuesta aceptada

the cyclist
the cyclist el 16 de Abr. de 2019
data = csvread('Book4.csv');
idx = find(data);
  3 comentarios

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Get Started with MATLAB en Help Center y File Exchange.

Productos


Versión

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by