Find empty cells in 3D cell?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Sharif Khalil
el 2 de Oct. de 2019
Comentada: Walter Roberson
el 3 de Oct. de 2019
I have a 3D cell RowXColXDep (12X125X1216), I want to find the empty cells (which row, column, and depth). I used:
[Row Col Dep] = find(cellfun(@isempty,channelResp));
but it did not work, it works only for 2D cells. Is there a solution for 3D cells?
Thanks in advance
0 comentarios
Respuesta aceptada
Shubham Gupta
el 3 de Oct. de 2019
Try this:
[r,c] = find(cellfun(@isempty,channelResp));
[nR,nC,nD] = size(channelResp);
Dep = floor(c/nC-0.0001)+1;
Col = c - nC*(Dep-1);
Row = r;
Let me know if you have doubts.
2 comentarios
Shubham Gupta
el 3 de Oct. de 2019
I am glad I could help. Please, make sure to accept the answer if it solves your problem. Cheers
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!