replace 1 in place of NaN

I have matrix with some elements NaN. I want to replace them with 1. how to do it

Answers (1)

Let K be your array which has nan.
K(isnan(K))=1;

Asked:

on 11 Nov 2016

Answered:

on 11 Nov 2016

Community Treasure Hunt

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

Start Hunting!