Shifting least negative value to zero

조회 수: 14 (최근 30일)
siri meka
siri meka 2022년 1월 1일
댓글: Image Analyst 2022년 1월 1일
Hello
So i have a graph whose values run below 0. i want to make the least point on this graph start from zero so that the subsequent values change accordingly. say -60 is the least point.. it should be zero on the graph the -20 will be at 40 and so on. please help me out.
Thank you so much
Happy New Year

채택된 답변

KSSV
KSSV 2022년 1월 1일
편집: KSSV 2022년 1월 1일
Let x be your data.
xnew = x-min(x) ;
Als have a loon on the function rescale.
  댓글 수: 5
siri meka
siri meka 2022년 1월 1일
Thank You
Image Analyst
Image Analyst 2022년 1월 1일
Or (another way) to clip all negative values at zero
x = max(x, 0);
Now negative values will be set to 0 and positive values will remain unchanged.

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

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by