Help Required in using the function 'removerows' and its reverse function
Show older comments
Hello
I have column matrix 'rain'
d=find(rain>=1.0); %Index of rainfall more than 1mm/h
[x,position]=removerows(rain,'ind',d);
high_rain=rain(rain>=1.0); %Column matrix with only high rains
high_rain=high_rain*2.5; % Manipulate High_rain
%manipulate_rain=removerows('reverse',x,position);
I wanted to reinsert the high_rain back to rain variable using the reverse function of removerows. How to do that.
Accepted Answer
More Answers (0)
Categories
Find more on Nonlinear Dynamics 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!