Replace one NAN with zero in a row vector without a loop

2 Ansichten (letzte 30 Tage)
Zeynab Mousavikhamene
Zeynab Mousavikhamene am 19 Aug. 2019
Beantwortet: Raj am 19 Aug. 2019
I have a row vector that its size is changing in each run. Some of its elements might be NAN and I want to replace those with zero.
How can I do that without need to have a loop? isnan(A) finds nan values but I need to replace and I want to avoid loop.

Akzeptierte Antwort

Raj
Raj am 19 Aug. 2019
A(isnan(A)) = 0; % replaces NAN elements of A matrix by Zero.

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