DSP Master VCL
|
Returns prewarped frequency according to the bilinear transform.
function BilinearPrewarp(Freq: Double; FS: Double = 2): Double; overload;
The function returns the frequency, which will map to Freq after the bilinear transformation has been aplied. The mapping is defined as ([1], p. 338, eq 8.28):
Result = (2/Pi)*ArcTan(Freq/(2*FS));
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!
|