Replacing NaN with value in previous column
Show older comments
Hi there, I am new in matlab and try to solve this problem for couple of hours, I need to replace all NaNs with the value in previous column and add 100:
so now I have> [14] [NaN] [9] [NaN] [13] [NaN] [13] [NaN] [9] [NaN] [15] [NaN] [11] [NaN] [10]
and I need to have> [14] [114] [9] [109] [13] [113] [13] [113] [9] [109] [15] [115] [11] [111] [10]
Thank you in advance.
Accepted Answer
More Answers (1)
goerk
on 17 May 2016
Very simple solution/idea:
I suppose you have a vector
v = [14 NaN 9 NaN 13 NaN];
you can get a Mask with the positions of the NaN's
mask = isnan(v);
shift this mask one position to the left
maskValue = [mask(2:end) false];
now you can create the new vector
v2 = v;
v2(mask) = v(maskValue)+100;
Attention: Special cases (e.g. two NaN's in a row, or a NaN at the beginning) has to be handled.
3 Comments
goerk
on 17 May 2016
The Idea behind the proposed solutions are the same. But the two answers before need less code.
Rene Sebena
on 17 May 2016
goerk
on 19 May 2016
Do you mean something like
A.v = [14 NaN 9 NaN 13 NaN];
?
Categories
Find more on Characters and Strings in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!