How can i check if an array cell contain only zero element ?
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
How can i check if an array cell just contain zero elements ? is there any defined matlab function ?
1 comentario
Azzi Abdelmalek
el 12 de Sept. de 2012
Editada: Azzi Abdelmalek
el 12 de Sept. de 2012
the size of your cell aray?
Respuestas (1)
Azzi Abdelmalek
el 12 de Sept. de 2012
Editada: Azzi Abdelmalek
el 12 de Sept. de 2012
B=cell2mat(A)
all(B(:)==0)
0 comentarios
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!