how can i define a piecewise function in matlab

1 vue (au cours des 30 derniers jours)
basem ibrahim
basem ibrahim le 12 Oct 2012
how i define a function like this h=0 when x-w/2<=d<=x+w/2 h=1 otherwise

Réponses (1)

Sean de Wolski
Sean de Wolski le 12 Oct 2012
Use logical indexing, for this case, you don't even need to apply the logical indices:
h = ~(x-w/2 <= d & d <= x+w/2);

Catégories

En savoir plus sur Elementary Math dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by