Combining periodic function

  • #1
194
0
Given:
x(t) =
cos(2*pi*f1*t) 0 <= t < 4
cos(2*pi*f2*t) 4 <= t < 8
cos(2*pi*f3*t) 8 <= t < 12

f1, f2, and f3 are given as well

Would it be possible to combine all three of these conditions into one convenient equation or am I just dreaming? I tried using Matlab to concatenate the three graphs, but it won't give me an equation of it.
 
Last edited:
  • #2
I'm not sure what you mean by a "convenient" equation. What you have is a perfectly good function, You could use the "Heaviside step function" which is defined by H(x)= 0 if x<= 0, H(x)= 1 if x> 0.

Then f(t)= cos(2pi f1 t)+ ((cos(2pi f2 t)- cos(2pi f1 t))H(t-4)+ (cos(2pi f3 t)- cos(2pi f2 t))H(t-8).

for 0<= t<= 4, both t-4< 0 and t-8< 0 so both H(t-4) and H(t-8) are 0 and only the first term, cos(2pi f1 t), is non zero. For 4< t<= 8, t-4> 0 so H(t-4)= 1 but H(t-8) is still 0: f(t)= cos(2pi f1 t)+ cos(2pi f2 t)- cos(2pi f1 t)= cos(2pi f2 t). If 8< t<= 12, both t-4> 0 and t-8>0 so both H(t-4) and H(t-8) are 1. f(t)= cos(2pi f1 t)+ cos(2pi f2 t)- cos(2pi f1 t)+ cos(2pi f3 t)- cos(2pi f2 t)= cos(2pi f3 t).

But is cos(2pi f1 t)+ ((cos(2pi f2 t)- cos(2pi f1 t))H(t-4)+ (cos(2pi f3 t)- cos(2pi f2 t))H(t-8) better than what you have?
 

Suggested for: Combining periodic function

Replies
13
Views
712
Replies
6
Views
226
Replies
10
Views
442
Replies
14
Views
188
Replies
22
Views
651
Replies
16
Views
929
Replies
7
Views
596
Back
Top