convert nans to 0

3 views (last 30 days)
Mate 2u
Mate 2u on 28 May 2012
Hi I have a large matrix and want to convert all nans to zeros. Any help?

Accepted Answer

Oleg Komarov
Oleg Komarov on 28 May 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;

More Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!