Finding high and low z cores on a data set

조회 수: 1 (최근 30일)
desert_scientist90
desert_scientist90 2019년 10월 23일
Hi I have a data set on a 0.5 grid, the dimension for x is 141, y is 71 and t is 38. I got the z scores and I squeeze them to get a 71*38 array. I am trying to find which years have a score below -1 and which years got a score +1. I used the following approach with no luck, the issue with this is that when I go to idx and idx1 I got only 0's and 1's with no dates. How can I get these results?
y = 1980:2017;
year = y';
year_z1 = horzcat(year,z1);
idx = year_z1(:,2) > 1;
high = year_z1(idx,:);
idx1 = year_z1(:,2) < -1;
low = year_z1(idx1,:);

답변 (0개)

카테고리

Help CenterFile Exchange에서 Simulink Functions에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by