finding the columns include ones

1 visualización (últimos 30 días)
sermet
sermet el 6 de En. de 2024
Respondida: madhan ravi el 6 de En. de 2024
matrix=[1 0 0 1 0;0 1 0 1 0];
% I need to find the number of column includes [1;1]
index_1 = 4 ;
% how can I find this using code or function?

Respuesta aceptada

madhan ravi
madhan ravi el 6 de En. de 2024
index = find(all(matrix)) % one can directly use logical indexing without find() function

Más respuestas (0)

Categorías

Más información sobre Matrix Indexing en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by