I need a function which returns 0 if the argument is negative
이전 댓글 표시
Hi, I need a function in Matlab which returns 0 if the argument is negative:
f(x) = 0 if x < 0
f(x) = f(x) if x > 0
How can I do?
Thank you!
댓글 수: 1
MATLAB already has such a function, it is called MAX():
max(0,x)
답변 (1개)
Torsten
2022년 3월 19일
g = @(x) (x > 0).*f(x)
카테고리
도움말 센터 및 File Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!