I have a 3D matrix having dimension m*n*365 (where m & n represents the the number lat & lon grids;365 represents the daily rainfall data stored in each grids). How can I find the percentile value of rainfall data stored in 150th day for each grid?

조회 수: 2 (최근 30일)
I have a 3D matrix having dimension m*n*365 (where m & n represents the the number lat & lon grids;365 represents the daily rainfall data stored in each grids). How can I find the percentile value of rainfall data stored in 150th day for each grid?

답변 (1개)

KSSV
KSSV 2019년 1월 15일
편집: KSSV 2019년 1월 15일
Let A be your m*n*365 3D matrix. Extract 150th matrix out of it.
B = A(:,:,150) ;
YOu can carry on your computation on B.
  댓글 수: 1
Sapam Raju Singh
Sapam Raju Singh 2019년 1월 16일
In that way, I can calculate the desired percentile value (say, 90th percentile) based on 150 days. But, I want to find the percentile value of data position in 150th day based on 365 days.

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

Community Treasure Hunt

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

Start Hunting!

Translated by