DSP Master VCL
|
Return unwarped frequency according to the bilinear transform.
function BilinearUnwarp(Freq: Double; FS: Double = 2): Double; overload;
The function returns the frequency, to which the Freq will map after the bilinear transformation has been aplied. The mapping is defined as ([1], p. 338, eq 8.28):
Result = 2*FS*tan(Pi*Freq/2);
FS defines the sampling frequency. T = 1/FS.
References:
[1] Digital signal processing, Vinay K. Ingle and John G. Proakis, Brooks-Cole, 2000
Copyright (c) 1999-2025 by Dew Research. All rights reserved.
|
What do you think about this topic? Send feedback!
|