Extracting Time Profiles from 3D+t data (4D)

1 Ansicht (letzte 30 Tage)
Edwin
Edwin am 30 Sep. 2019
Kommentiert: N/A am 13 Nov. 2020
Hi All,
I'm curious if anyone can provide a simple solution to this problem. I have a 4D data set (3D+time) and a 3D mask. In order to extract all the 1D time profiles using the combination, I am using the below method. My question is if anyone is aware of a faster/more simple way to accomplish this same task. Thank you all!
Cheers,
Edwin
temp = 3DMask;
[r,c,v] = ind2sub(size(temp),find(temp == 1));
%
for i = 1:size(r,1)
timeSeries(:,i) = Data_4D(r(i),c(i),v(i),:);
end
  1 Kommentar
N/A
N/A am 13 Nov. 2020
I am also facing the same problem. Could you please elaborate what do you mean by "Data_4D"?.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Dinesh Yadav
Dinesh Yadav am 3 Okt. 2019
The code is already well optimized, except parfor can be used in this case rather than just for to get the code running faster if size of 4D and 3D matrices are big.
The code cannot be vectorized as individual elements have to be selected based on the condition (find(temp==1)). We cannot use Boolean masking and reshaping as size of elements vary at each time step depending on the condition given. So I don’t think there is a way to further optimize the code but it can be effectively parallelized by using parfor command.
  1 Kommentar
Edwin
Edwin am 3 Okt. 2019
Thank you Dinesh. I was hoping there was a way to vectorize perhaps but wasn't sure. Thanks for the help!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Time Series Events finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by