Objective:
Design an FIR Filter to compute the output
[] based on the delayed samples (₀, ₁, ₂, ₃) and the coefficients (₀, ₁, ₂, ₃) using the following equation:
Y[n]=S0⋅A0+S1⋅A1+S2⋅A2+S3⋅A3
Y[n] = S₀ ⋅ A₀ + S₁ ⋅ A₁ + S₂ ⋅A₂ + S₃ ⋅ A₃
Y[n]=S0⋅A0+S1⋅A1+S2⋅A2+S3⋅A3
The filter must adhere to the...