MATLAB: Plot function over two intervals

functionhomeworkintervalMATLABplot

Hi, I'm trying to plot an interval funciton, where f(x) = 1 from -1 <= x <= 0 and f(x) = -1 from 0 < x < 2, and f(x) = 0 otherwise. I'm not sure how to setup the intervals to do this.

Best Answer

m = 500 ;
x = linspace(-1,3,m) ;
f = zeros(size(x)) ;
f(x>=-1 & x <=0) = 1 ;
f(x>=0 & x <2) = -1 ;
plot(x,f)
Related Question