Getting the low and high years

1 次查看(过去 30 天)
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

采纳的回答

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

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 General Applications 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by