필터 지우기
필터 지우기

How to discretize?

조회 수: 5 (최근 30일)
Kunal Roy
Kunal Roy 2016년 9월 19일
답변: Sean de Wolski 2016년 9월 19일
Suppose I had 51,42,43,56,76,54,34,56,78,80 in a column how would I use discretize function to put the numbers between 50-59 into 50, and those between 60-69 into 60 and so on?

채택된 답변

Sean de Wolski
Sean de Wolski 2016년 9월 19일
bins = 0:10:100;
x = [51,42,43,56,76,54,34,56,78,80]
newx = bins(discretize(x,bins))

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Physics에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by