フィルターのクリア

Getting the low and high years

2 ビュー (過去 30 日間)
desert_scientist90
desert_scientist90 2019 年 10 月 25 日
回答済み: galaxy 2019 年 10 月 25 日
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 Center および File ExchangeGeneral Applications についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by