Chapter 1 Signal and Systems
Chapter 1 Signal and Systems
Chapter 1
Chapter 1: Introduction to Signals and Systems
• Types of Signals:
• Continuous-time vs Discrete-time (An example of a continuous-time signal is a sinusoidal waveform, a real-world example of a continuous-time
signal is human voice or sound waves in the air.) (discrete-time: Digital Audio, Image Data. Financial Data: Stock prices are often recorded at discrete time intervals (e.g., daily closing prices))
• Periodic vs Aperiodic (Periodic signal example: AC voltage (repeats every cycle) or TV broadcast signals)-(Human speech or a single clap (irregular, no
repetitive pattern).)
• Even vs Odd (An even signal is symmetric with respect to the vertical axis, meaning it looks the same when time is reversed.). (An odd signal is anti-symmetric)
plt.plot(t, x_t)
plt.title("Continuous-time Signal")
plt.xlabel("t")
plt.ylabel("x(t)")
plt.grid(True)
plt.show()
time-reversed signal is defined as y(t)=x(−t)
# Define the time range
t1 = np.linspace(-10, 10, 400)
# Time-reversed signal
x_t_reversed = np.sin(-t1)