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

2 visualizzazioni (ultimi 30 giorni)
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!

Risposte (1)

Torsten
Torsten il 19 Mar 2022
g = @(x) (x > 0).*f(x)

Categorie

Scopri di più su Get Started with MATLAB in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by