How i can fix this issue in MATLAB?

Hi,
If I use this command (Phie(isnan(Phie)) = 0.22). It assign every NaN equal to 0.22. Suppose I want assign a range of values say 0.15 - 0.25 instead of single value (0.22).
How can I edit or make a command like Phie(isnan(Phie)) = 0.15 - 0.25. Here Phie is plotted along x axis while say depth is plotted along Y axis.

 Accepted Answer

KSSV
KSSV on 8 Dec 2021
Edited: KSSV on 8 Dec 2021
idx = isnan(Phie) ;
val = linspace(0.15,0.25,nnz(idx)) ;
Phie(idx) = val ;

6 Comments

Dear @KSSV I tried but it is not working
Okay..edited the code.
@KSSV it is working but with this code I got straight line in between say 0.15 0.25. like
Is it possible to get a fluctuated (a bit zigzag) curve like the below one in the above figure?
Read about fillmissing.
alright, thank you for help
Attach sample input and desired output if you want more help.

Sign in to comment.

More Answers (0)

Categories

Community Treasure Hunt

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

Start Hunting!