I need a function which returns 0 if the argument is negative

조회 수: 3 (최근 30일)
Elia Paini
Elia Paini 2022년 3월 19일
편집: Stephen23 2022년 12월 15일
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
Stephen23
Stephen23 2022년 12월 15일
편집: Stephen23 2022년 12월 15일
MATLAB already has such a function, it is called MAX():
max(0,x)

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

답변 (1개)

Torsten
Torsten 2022년 3월 19일
g = @(x) (x > 0).*f(x)

카테고리

Help CenterFile Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by