How do omit values in Matlab when taking R values?
古いコメントを表示
I have a matrix of El Nino Data with Precipitation Data. I have to find the correlation coefficient between El Nino and Precpitation. Some of the precipitation data that came is displayed as -9999 for not recorded.
When writing corrcoef(), how do I do it to where it will omit those elements that have the -9999's in it?
回答 (1 件)
Sean de Wolski
2011 年 12 月 2 日
So something like:
x = 1:10;
y = 3*(x)+7+rand(1,10)*2; %y = linear function of x plus noise
x([3 7]) = -9999;
corrcoef(x(x~=-9999),y(x~=-9999))
カテゴリ
ヘルプ センター および File Exchange で Weather and Atmospheric Science についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!