convert nans to 0

6 Ansichten (letzte 30 Tage)
Mate 2u
Mate 2u am 28 Mai 2012
Hi I have a large matrix and want to convert all nans to zeros. Any help?

Akzeptierte Antwort

Oleg Komarov
Oleg Komarov am 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;

Weitere Antworten (0)

Kategorien

Mehr zu Data Type Conversion finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by