Percentile calculation along time

조회 수: 2 (최근 30일)
Ricardo Duarte
Ricardo Duarte 2021년 6월 7일
댓글: Ricardo Duarte 2021년 6월 7일
Dear all,
I have a time series analysis in which i should calculate its percentiles.
Let me explain:
I have 5 matrices (A,B,C,D,E) in which each one of them corresponds to a determined sound pressure level (spl) calculate along 5 seconds. This means that matrix A corresponds to the spl at the second 1, matrix B corresponds to the spl at the second 2, matrix C corresponds to the spl at the second 3, etc, etc;
All matrices are 3000x3000 size that corresponds to the coordinates of the spl in space.
So, now I would like to calculate the percentile of the combination of all of these along the time.
I've been using prctile(A,50) for example, but it gives me a matrix 1x3000 which is not what I want, since I need to plot the percentile in a map, in which each point corresponds to a specific coordinate.
Thanks in advance for your help,

채택된 답변

Matt J
Matt J 2021년 6월 7일
편집: Matt J 2021년 6월 7일
T=cat(3,A,B,C,D,E) ;
prctile( T ,50,3 )
  댓글 수: 2
Ricardo Duarte
Ricardo Duarte 2021년 6월 7일
Thank you!
Ricardo Duarte
Ricardo Duarte 2021년 6월 7일
In case I have more then 20 matrices how can I concatenate then automatically?
Thank you

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

추가 답변 (0개)

제품

Community Treasure Hunt

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

Start Hunting!

Translated by