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 Center および File ExchangeGet Started with MATLAB についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by