Spatial correlations with a timeseries
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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.
0 commentaires
Réponses (1)
Duncan Po
le 18 Fév 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.
Voir également
Catégories
En savoir plus sur Logical dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!