apply condition on Matrix?
8 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Ali Mukhtar
el 9 de Sept. de 2019
Comentada: Ali Mukhtar
el 9 de Sept. de 2019
if i have a matrix B=[1111000] and another integer T=4 i want to apply while loop if number of One's in B>=T how should i write it to get desire condition
12 comentarios
Respuesta aceptada
madhan ravi
el 9 de Sept. de 2019
Editada: madhan ravi
el 9 de Sept. de 2019
Just use logical indexing "==" to see the values equal 1 and use nnz() and then use >= T if you get 1 it's true else false.
help ==
help nnz
help >=
5 comentarios
madhan ravi
el 9 de Sept. de 2019
nnz(B==1) >= T
%^^^^^^^^--- counts the number of ones
Más respuestas (1)
David Hill
el 9 de Sept. de 2019
If B is a 1 by x vector of 1's and 0's (B = [1,1,1,1,1,0,0,0,0,0])
while sum(B)>T
if B is a 1 by x character array (B = '1111100000')
while sum(double(B)-48)>T
Your matrix B is not described well above, it looks like a single number.
3 comentarios
David Hill
el 9 de Sept. de 2019
If your array is a character array '111110000', then I converted to a number array which is a ascii representative of each character and subtract 48=='0' to get an array of 1's and 0's. If you already have an array of 1's and 0's you don't need to do this.
Ver también
Categorías
Más información sobre Matrix Indexing 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!