Introduction
In this blog, I’ll walk through two foundational concepts in signals: analog signals and discrete time signals. I’ll use practical examples—temperature measurements over a month, voltage ranges, and even the difference between an analog clock and a digital clock—to make these ideas stick.
Let’s start with a comparison that sets the stage for everything else.
(toc) #title=(Table of Content)
Why an Analog Clock Differs from a Digital Clock
Before I define analog signals formally, I want to highlight a clock example.
An analog clock has three hands: hour, minute, and second. It can represent any time value within a 24‑hour cycle. At 11:30 AM, the minute hand sits exactly between 11 and 12—no rounding. That continuity is the essence of analog.
A digital clock, in contrast, typically shows only hours and minutes (no seconds). When time moves from 12:59 to 1:00, you never see the transition. The display jumps: 12, then 13, then 14. You cannot show 12 minutes and 30 seconds as a unique display state. That’s the digital nature—allowed states are discrete, with no intermediate values permitted.
This distinction—continuous vs. discrete possible values—directly maps to analog vs. digital signals.
Defining the Analog Signal
An analog signal can take any value within a given range. There are no gaps or forced steps.
Consider temperature monitoring across a month. Suppose I measure from the 1st to the 31st, with a maximum temperature \( T_{max} = 47^\circ C \) and a minimum near \( 0^\circ C \). On a rainy day around the 16th, the temperature drops smoothly. On any given day, I might have \( 27^\circ C \), \( 27.8^\circ C \), or \( 27.818^\circ C \). All are valid.
Now replace temperature with voltage. Let \( V_{max} = 20\text{ V} \) and minimum 0 V. An analog voltage signal can be \( 5.3\text{ V} \), \( 12.78\text{ V} \), or \( 19.999\text{ V} \). Any value in between is allowed. That is the core of an analog signal:
Analog signal = a signal that can take any value within its specified limits.
What Is a Discrete Time Signal?
A discrete time signal is not about the range of values—it’s about the timing.
Definition:
\[
\text{Discrete time signal} ;:; \text{Signal defined only at discrete intervals of time.}
\]
Let’s return to the monthly temperature example. Suppose I only record the temperature at 11:00 AM each day. On day 1 at 11:00 AM, I get a value. On day 2 at 11:00 AM, I get another value. But what happened between 11:00 AM on day 1 and 11:00 AM on day 2? I have no data. That portion of the time axis is not defined.
In the original continuous temperature change, the underlying physical signal is still analog—nature doesn’t jump. But because I only sampled it at specific times (discrete intervals), what I have is a discrete time signal.
This leads to an important relationship:
- All real‑world physical signals are fundamentally analog.
- A discrete time signal is a subset of an analog signal—it contains only the values at selected time instants, not the continuous behavior between them.
To visualize this, imagine the smooth analog temperature curve. Now erase everything except the values at 11:00 AM each day. What remains is the discrete time representation.
Connecting Back to Voltage and Signal Processing
In electrical and electronics engineering, a signal is simply a change in current or voltage over time. That analog voltage signal can be \( v(t) = 5\sin(t) \) volts—taking every value from -5 to +5 continuously. If I sample that voltage every millisecond, the resulting list of numbers is a discrete time signal.
The discrete time signal does not mean the values are discrete in amplitude (that would be a digital signal, which I will cover separately). Here, only time is discretized. The amplitude can still be any real number within the range.
Summary of What We Covered
- Analog signal: any value within limits, defined at all times.
- Discrete time signal: defined only at specific time instants; a subset of an analog signal.
- Analog vs. digital clock provides an intuitive metaphor for continuity vs. discrete allowed states.
- In real systems, all signals start as analog. Discrete time sampling gives us a manageable representation.
I’ll stop here, but the next logical step is to understand how discrete time signals lead to digital signals—where both time and amplitude become discrete.