how to devide data into 3 catagaries

조회 수: 2 (최근 30일)
skyhunt
skyhunt 2015년 11월 7일
편집: skyhunt 2015년 11월 8일
hi...i want to devide the rainfall data into 3 catagaries, the first one is <70 and the second one is 70 to 120 and 3 rd one is >=120

답변 (1개)

Walter Roberson
Walter Roberson 2015년 11월 7일
idx = YourData < 70;
lowrain = YourData(idx);
idx = 70 <= YourData & YourData < 120;
midrain = YourData(idx);
idx = 120 <= YourData;
highrain = YourData(idx);
  댓글 수: 1
skyhunt
skyhunt 2015년 11월 8일
편집: skyhunt 2015년 11월 8일
thanking you reply...in high rain catagiry the years are also adding finally..what i do?

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by