Unit 2.2: Periodic, Energy and Power Signals#
We continue with our survey of Signals and Classification of Signals by looking at Periodic and Nonperiodic Signals and Energy and Power Signals.
This section is based on Section 1.2 of [Hsu, 2020].
Follow along at cpjobling.github.io/eg-150-textbook/signals_and_systems/signals/pep_signals
Periodic and Nonperiodic Signals#
Periodic signals#
A continuous-time signal
An example of such a signal is given in Fig. 17.

Fig. 17 An example of a periodic signal.#
We can use the periodicity to synthesize a periodic signal such as that shown in Fig. 17.
Let’s first define the signal over one period. We will use MATLAB and the symbolic math toolbox for this example:
Let one period of the periodic signal be defined by
We can use the Heaviside function (unit step) (MATLAB function heaviside
: see The Unit Step Function) to sythesise this signal.
Define a t
syms t
Define the period
T = 1; % period of periodic signal
Now define the signal using the Heaviside function to limit the range of the signal.
x(t) = t * (heaviside(t) - heaviside(t-T));
Now plot one period of the signal
fplot(x(t)),ylim([0 1.2]),grid,title('A Single period of x(t)'),xlabel('t')

One period earlier:
signal1 = x(t + T)
fplot(signal1),ylim([0 1.2]),grid,title('A Single period of x(t+T)')

Two periods later:
signal2 = x(t-2*T)
fplot(signal2),ylim([0 1.2]),grid,title('A Single period of x(t)')

It follows that
for all
Now we use a loop and the definition of periodic function to repeat this signal multiple times
periodic_signal = 0;
for m = 5:-1:-5
periodic_signal = periodic_signal + x(t + m*T);
end
periodic_signal
Now we plot the result
fplot(periodic_signal,'g-',"LineWidth",2),...
grid,ylabel('x(t)'),xlabel('t'),title('T = 1')
xlim([-3.00 3.00])
ylim([0 1.2])

Fundamental period#
The fundamental period
For the previous example this was
DC signals#
Note that the definition of the fundamental period does not hold for a constant signal
For a constant signal

Fig. 18 A DC signal#
Note
Note that the sum of two continuous time signals may not be periodic (Example Example 2.1: Sum of two periodic signals)
Nonperiodic signals#
Any continuous-time signal which is not periodic is called a nonperiodic (or aperiodic) signal. For example see Fig. 19

Fig. 19 A nonperiodic signal#
Energy and Power Signals#
Consider

Fig. 20 A simple resistor circuit.#
The instantaneous power
Total energy
Normalised energy content of a signal#
For an arbitrary continuous-time signal
Normalised average power of a signal#
The normalised average power
Energy and power signals#
Based on the previous definitions, the following classes of signals can be defined:
is said to be an energy signal if and only if , and so .
is said to be an power signal if and only if , thus implying that .
Signals that satisfy neither property are referred to as neither energy signals nor power signals.
Note that a periodic signal is a power signal if its energy content per period is finite, and then the average power of this signal need only be calulated over a period (ex:1.18).
Other Measures of Signal Size#
There are other measures of signal size that are used:
Mean value#
For periodic signals with fundamental period
The mean value is also known as the dc value.
Observations
the mean value corresponds to the arithmetic average
the signal
has zero mean
Measures of spread#
Root-mean square (RMS)#
E.g. the power of
Peak value#
Crest factor (CF)#
Peak-to-average power ratio (PAPR)#
Observations
CF and PAPR measure the dispersion of a signal about its average power.
To express CF or PAPR we often use decibels (dB). To obtain a measure of the quantity
in dB use .
Exercises 2#
Example 2.1: Sum of two periodic signals#
Let
For the answer, refer to the lecture recording or see solved problem 1.14 in [Hsu, 2020].
Exercise 2.2: Periodic signals#
MATLAB Example
We will solve this example by hand and then give the solution in the MATLAB lab.
Determine whether or not each of the following signals is periodic. If a signal is periodic, determine its fundamental period.
a).
b).
c).
d).
e).
f).
For the answers, refer to the lecture recording or see solved problem 1.16 in [Hsu, 2020].
Exercise 2.3: Integral properties of periodic signals#
Show that if
for any real
For the answer, refer to the lecture recording or see solved problem 1.17 in [Hsu, 2020].
Exercise 2.4: Power in a periodic signal#
Show that if
is the same as the average power
For the answer, refer to the lecture recording or see solved problem 1.18 in [Hsu, 2020].
Exercise 2.5: Power and energy signals#
MATLAB Example
We will solve this example by hand and then give the solution in the MATLAB lab.
Determine whether the following signals are energy signals, power signals, or neither.
a).
b).
c).
Note
Exercise 2.6: Power in domestic mains electricty#
Domestic mains power in the UK is delivered as a sinusoidal signal
Calculate the fundamental period
Express CF and PAPR in dB.
Summary#
In this lecture we completed our look at signals and the classification of signals.
In particular we have looked at
Unit 2.2: Take aways#
A signal is periodic, with period
isSignal energy for a signal
:
Signal power for a signal
:
is said to be an energy signal if and only if , and so . is said to be an power signal if and only if , thus implying that .Signals that satisfy neither property are referred to as neither energy signals nor power signals.
Signal mean (average or DC value):
Root mean square (RMS):
;Peak value:
;Crest factor:
Peak-to-average power ratio (PAPR):
Value of
in decibel (dB) is .