Hi,,I am trying to calculate the weight of a matrix.how can i do that> I am explaining below
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
nafila aytija
el 31 de Mayo de 2016
Comentada: the cyclist
el 2 de Jun. de 2016
Suppose I have a matrix...
A = [1 0 0 0 ;
1 1 0 0 ;
1 1 1 0 ;
1 1 1 1]
how do I calculate that how many coulmns have only one ONE ? TIA
0 comentarios
Respuesta aceptada
the cyclist
el 31 de Mayo de 2016
numberOfColumnsThatHaveExactlyOneOne = sum(sum(A==1)==1);
3 comentarios
the cyclist
el 2 de Jun. de 2016
numberOfRowsThatHaveExactlyOneOne = sum(sum(A==1,2)==1,1);
Más respuestas (0)
Ver también
Categorías
Más información sobre Matrix Decomposition 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!