is there any function that convert negative value to zero?

46 vues (au cours des 30 derniers jours)
Jinsu Kim
Jinsu Kim le 22 Nov 2018
Hi guys~
What am now find is a function that retrun zero in case of negative inputs.
For example, A = [ 10 8 6 4 2 0 -2 -4 ] ;
somefunction(A) = [ 10 8 6 4 2 0 0 0 ] ;
Thanks in advances:D
Happy thanks giving day

Réponse acceptée

Rik
Rik le 22 Nov 2018
Modifié(e) : Rik le 22 Nov 2018
somefunction=@(x) (abs(x)+x)/2;

Plus de réponses (1)

Steven Lord
Steven Lord le 22 Nov 2018
Use the max function with two inputs.

Catégories

En savoir plus sur MATLAB dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by