replace 1 in place of NaN

1 view (last 30 days)
Jay Hanuman
Jay Hanuman on 11 Nov 2016
Answered: KSSV on 11 Nov 2016
I have matrix with some elements NaN. I want to replace them with 1. how to do it

Answers (1)

KSSV
KSSV on 11 Nov 2016
Let K be your array which has nan.
K(isnan(K))=1;

Community Treasure Hunt

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

Start Hunting!