Hello,
I'd like to generate a function:
x(t) = rect[(t-1)/2]
therefore,
x(t) = 1; 0<=t<=2
x(t) = 0; otherwise
I've tried sampling using a for loop, but I can't seem to create a graphable collection of points ( I always end up with one point). What's the solution?
Here's a sample of my...