How to make specific elements of a cell equal to zero?
10 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Haitham AL Satai
el 15 de Sept. de 2022
Respondida: Walter Roberson
el 15 de Sept. de 2022
I have a cell 41 * 41 dimension and I would like to make the values that over 0.5 zeros and the rest of the values keep them without any changes.
Any assistance, please?
0 comentarios
Respuesta aceptada
Más respuestas (1)
Walter Roberson
el 15 de Sept. de 2022
newCell = cellfun(@(M) M.*(M<=0.5), YourCell, 'uniform', 0)
However this will fail in locations that contain infinite values.
0 comentarios
Ver también
Categorías
Más información sobre Numeric Types 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!