|
Matlab explicitly states that:
"All of the non-object oriented filter design functions operate with normalized frequencies. Convert frequency specifications in Hz to normalized frequency to use these functions. The Signal Processing Toolbox software defines normalized frequency to be in the closed interval [0,1] with 1 denoting π radians/sample. For example, to specify a normalized frequency of π/2 radians/sample, enter 0.5.
To convert from Hz to normalized frequency, multiply the frequency in Hz by two and divide by the sampling frequency." --> f(norm) = f(Hz)*2/F(sampl)
What I would like to ask is:
Does that mean that, for example, in a Magnitude (dB) diagram in fvtool using freqz function, the normalized frequency in point labeled 1 on the horizontal axis (that is, =pi since 1 corresponds to pi as stated underneath the axis) corresponds to Herz frequency in this way: f(Hz) = F(sampl)*f(norm)/2 = 8192*pi/2 = 4096*pi Herz??
(where F(sampl) = 8192 by default when ploting with the freqz function)
|