how to find the smallest length filled with numbers
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Dinouk Goonewardena
el 26 de Mzo. de 2020
Comentada: Dinouk Goonewardena
el 26 de Mzo. de 2020
I need to find the column with the least amount of digits e.g 5 rows in the case below
0 comentarios
Respuesta aceptada
Peng Li
el 26 de Mzo. de 2020
[~, indCol] = min(sum(~isnan(yourArray), 1));
indCol is the index for the column you need.
4 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Loops and Conditional Statements en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!