Next: Application: distinguish a small
Up: The windowed DFT
Previous: Frequency response of windows
Contents
Notice that in Figure 18, the frequency
response of each window has one main lobe at the center, and then
multiple sidelobes at a lower response. To distinguish two signals
that are close in frequency, we want the main lobe to be as narrow
as possible. If our two frequencies are so close that they are both
inside the main lobe, we cannot distinguish them. They will both show
up in the same FFT bins. In this case, we don't care as much about
the side lobes.
For the examples shown in Figure 18, the
one with the narrowest main lobe (most selective) is the rectangular
window. The Kaiser window comes in second. Note that the Kaiser window
has an adjustable parameter beta, which you can use to tune the window
to be more or less selective.
Next: Application: distinguish a small
Up: The windowed DFT
Previous: Frequency response of windows
Contents
$username="comment";
$password="12345aa";
$database="commentsdb1";
$link = mysql_connect('mechanicalvibrationc.domaincommysql.com', 'comments', $password);
if (!$link) {
die('Could not connect: ' . mysql_error());
}
@mysql_select_db($database) or die( "Unable to select database");
$query = "SELECT * FROM `comments` WHERE URL='$URL'";
#echo "query is " . $query;
$result = mysql_query($query);
mysql_close();
while($row = mysql_fetch_array($result)) {
echo "User " . $row['Name'] . " Posted on " . $row['DateTime'];
echo "
";
echo $row['Comment'];
echo "
";
}
echo "
";
?>
Leave a comment on this page:
This work by Daniel Kiracofe (daniel dot kiracofe at gmail dot com)
is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.