Spatial correlations with a timeseries

10 visualizaciones (últimos 30 días)
Kelly Kilbourne
Kelly Kilbourne el 17 de Feb. de 2021
Comentada: Kelly Kilbourne el 23 de Feb. de 2021
Greetings,
I am trying to correlate a single time series to an xy field of timeseries. I have an array (local temperature data, a 1x 2005 dataset) and I want to correlate it to surface temperature over the globe (a 180x89x2005 dataset). I want a result that is a 180x89 matrix with each value representing the correlation coefficient between my local temperature and the temperature at that spot over the time period of interest (i.e. with each column and row over the third dimension). The problem I face is trying to make the dimensions work so that I can simply make the corr function work properly. This feels like a stupid problem; I think I am missing something simple.

Respuestas (1)

Duncan Po
Duncan Po el 18 de Feb. de 2021
corr works on columns in 2D matrices.
Your local temperature is a row, so you need to tranpose it:
local_temp = local_temp.';
Your surface temperature is a 3D array with each location a vector along the third dimension. You need to permute and then flatten to make it a matrix:
surface_temp = permute(surface_temp, [3 1 2]); % permute
surface_temp = surface_temp(:,:); % flatten
corr should then work:
[rho, pval] = corr(local_temp, surface_temp);
You may want to reshape the output.
  1 comentario
Kelly Kilbourne
Kelly Kilbourne el 23 de Feb. de 2021
Thank you! I had played with permute, but had not tried flattening the data and that was key. Now I just need to figure out how to reshape the output again so that I can plot it.

Iniciar sesión para comentar.

Categorías

Más información sobre Preprocessing Data en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by