How to make specific elements of a cell equal to zero?
10 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Haitham AL Satai
am 15 Sep. 2022
Beantwortet: Walter Roberson
am 15 Sep. 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 Kommentare
Akzeptierte Antwort
Weitere Antworten (1)
Walter Roberson
am 15 Sep. 2022
newCell = cellfun(@(M) M.*(M<=0.5), YourCell, 'uniform', 0)
However this will fail in locations that contain infinite values.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Numeric Types finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!