필터 지우기
필터 지우기

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 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