필터 지우기
필터 지우기

create a new 4D Array from 2 others

조회 수: 1 (최근 30일)
Pepe Grillo
Pepe Grillo 2021년 2월 24일
댓글: Pepe Grillo 2021년 2월 25일
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
Pepe Grillo
Pepe Grillo 2021년 2월 25일
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 2021년 2월 25일
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!

댓글을 달려면 로그인하십시오.

채택된 답변

Rik
Rik 2021년 2월 25일
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
Rik
Rik 2021년 2월 25일
That first line was only meant to generate random data. You should replace it with your actual data.
Pepe Grillo
Pepe Grillo 2021년 2월 25일
yes sure, just the second part works perfect
thk!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Resizing and Reshaping Matrices에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by