convert nans to 0

6 vues (au cours des 30 derniers jours)
Mate 2u
Mate 2u le 28 Mai 2012
Hi I have a large matrix and want to convert all nans to zeros. Any help?

Réponse acceptée

Oleg Komarov
Oleg Komarov le 28 Mai 2012
% Sample input with some NaNs
A = rand(10);
A(randi([1 100],[20,1])) = NaN;
% Detect and replace NaNs
idx = isnan(A);
A(idx) = 0;

Plus de réponses (0)

Catégories

En savoir plus sur Data Type Conversion dans Help Center et File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by