MATLAB: Getting the low and high years

MATLAB and Simulink Student Suitetablevalueszscores

Hi I have a table with z-scores per year, I am trying to get the z-scores with values greater that 1 and lower than -1. How can I do this on matlab?
Thanks for your help

Best Answer

Let 's try
load('zyrs.mat');
out = year_SPI(find(abs(year_SPI(:,2)) >1), :);