create a new 4D Array from 2 others

1 view (last 30 days)
Pepe Grillo
Pepe Grillo on 24 Feb 2021
Commented: Pepe Grillo on 25 Feb 2021
Hi!
i want to build a new 4d array from 2 others and one array is telling me the position of the values that i want,
any idea?
Thanks!
  7 Comments
Pepe Grillo
Pepe Grillo on 25 Feb 2021
Ok. A level of depth means that there is 7 possible depths distance each other by 500 meters (but thats not the problem)
Lets see if I can explain better and thanks ofcourse for the interaction!
so the 4D array u1 = (241x97x7x1637) (lon, lat, dpth, time). for different lat lon you have different depths. What I want is to have a 3D array u2= (lon, lat, time) with u values that are the last values form u1.
Pepe Grillo
Pepe Grillo on 25 Feb 2021
last value from u1 means that not allways the last value is the at the level 7 because the bathymetrie is changing and could be at 5 or 3 or 1
something like that
let me know
thanks!

Sign in to comment.

Accepted Answer

Rik
Rik on 25 Feb 2021
I think I understand what you mean. The code below will overwrite all values that are not NaN for a given depth, which is equivalent to setting it to the last non-NaN (except if the first value is NaN).
%generate some fake data
%cumsum will ensure all values after the first NaN are NaN as well
u1=rand(241,97,7,1637);u1(u1<0.1)=NaN;u1=cumsum(u1,3);
u2=u1(:,:,1,:);
for depth=1:size(u1,3)
layer=u1(:,:,depth,:);
L=~isnan(layer);
u2(L)=layer(L);
end
  3 Comments
Rik
Rik on 25 Feb 2021
That first line was only meant to generate random data. You should replace it with your actual data.
Pepe Grillo
Pepe Grillo on 25 Feb 2021
yes sure, just the second part works perfect
thk!

Sign in to comment.

More Answers (0)

Categories

Find more on Structures in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!