לדלג לתוכן

קובץ:8-point windows.gif

תוכן הדף אינו נתמך בשפות אחרות.
מתוך ויקיפדיה, האנציקלופדיה החופשית

8-point_windows.gif(574 × 390 פיקסלים, גודל הקובץ: 18 ק"ב, סוג MIME‏: image/gif, 0.1 שניות)

ויקישיתוף זהו קובץ שמקורו במיזם ויקישיתוף. תיאורו בדף תיאור הקובץ המקורי (בעברית) מוצג למטה.

תקציר

תיאור
English: We illustrate two different ways to generate Bartlett window functions for spectral analysis applications. MATLAB calls them "symmetric" and "periodic". The latter is also called "DFT Even" in the classic Frederic Harris paper.
תאריך יצירה
מקור נוצר על־ידי מעלה היצירה
יוצר Bob K
אישורים והיתרים
(שימוש חוזר בקובץ זה)
אני, בעל זכויות היוצרים על עבודה זו, מפרסם בזאת את העבודה תחת הרישיון הבא:
Creative Commons CC-Zero קובץ זה זמין לפי תנאי הקדשה עולמית לנחלת הכלל CC0 1.0 של Creative Commons.
האדם ששייך יצירה להיתר הזה הקדיש את היצירה לנחלת הכלל על־ידי ויתור על כל הזכויות שלו או שלה על היצירה בכל העולם לפי חוק זכויות יוצרים, לרבות כל הזכויות הקשורות או הסמוכות כקבוע בחוק. באפשרותך להעתיק, לשנות, להפיץ, או להציג את היצירה, אפילו למטרות מסחריות, וכל זה אפילו מבלי לבקש רשות.

גרסאות אחרות Derivative works of this file:  Comparison of symmetric and periodic triangular window functions.svg
GIFהתפתחות 
InfoField
 
Octave עם‎‎ נוצרה ה GIF תמונת מפת סיביות
Octave/gnuplot source
InfoField
click to expand

This graphic was created by the following Octave script:

pkg load signal
graphics_toolkit gnuplot
clear all; close all; clc

 M=5600;        % big number, divisible by 7 and 8
% Generate M+1 samples of a Triangle window
 window = triang(M+1);
 N=8;           % actual window size, in "hops"

% Sample the window.
% Scale the abscissa. 0:M samples --> 0:7 "hops", and take 8 symmetrical hops, from 0 to 7
 sam_per_hop_7 = M/7;
 symmetric = window(1+(0:7)*sam_per_hop_7);

% Scale the abscissa. 0:M samples --> 0:8 "hops", and take 8 asymmetrical hops, from 0 to 7
 sam_per_hop_8 = M/8;
 periodic = window(1+(0:7)*sam_per_hop_8);

% Compare equivalent noise bandwidths (info only)
ENBW_symmetric = N*sum(symmetric.^2)/sum(symmetric)^2
ENBW_periodic  = N*sum(periodic.^2) /sum(periodic)^2
 
hfig = figure
plot(0:7, symmetric, 'color', 'red', '.')   % plot the symmetric coefficients
hold on                                     % same axes for next 3 plots
 
plot(0:7, periodic,  'color', 'blue', '.')  % plot the periodic  coefficients

% Connect the dots
hops = (0:M)/sam_per_hop_8;
plot(hops, window, 'color', 'blue')            % periodic

hops = (0:M)/sam_per_hop_7;
plot(hops, window, 'color', 'red')             % symmetric
 
xlim([0 8])
set(gca,'FontSize',14)
set(gca, "yaxislocation", "origin")
set(gca, 'xgrid', 'on');
set(gca, 'ygrid', 'on');
set(gca, 'ytick', [0:.25:1]);
set(gca, 'xtick', [0:8]);
text(3.3, 0.27, 'Matlab "symmetric" \rightarrow', 'color', 'red', 'FontSize',12)

str = {'\leftarrow Matlab "periodic"','     ("DFT-even")'};
text(5.2, 0.74, str, 'color', 'blue', 'FontSize',12)

title('Two 8-point Bartlett window functions','FontSize', 14);
xlabel('\leftarrow  n  \rightarrow')

% Or use the export function on the GNUPlot figure toolbar.
print(hfig,"-dsvg", "-S574,390","-color", 'C:\Users\BobK\8-point windows.svg')

כיתובים

נא להוסיף משפט שמסביר מה הקובץ מייצג

פריטים שמוצגים בקובץ הזה

מוצג

checksum אנגלית

38f1e6e245364e7e4e0e0c104eae08ba21dbdadc

הוגדר לפי: SHA-1 אנגלית

18,217 בית

0.1 שנייה

390 פיקסל

574 פיקסל

היסטוריית הקובץ

ניתן ללחוץ על תאריך/שעה כדי לראות את הקובץ כפי שנראה באותו זמן.

תאריך/שעהתמונה ממוזערתממדיםמשתמשהערה
נוכחית04:06, 12 באפריל 2016תמונה ממוזערת לגרסה מ־04:06, 12 באפריל 2016‪390 × 574‬ (18 ק"ב)Bob KChange window title. "Bartlett" is more specific than "triangular".
01:06, 6 באפריל 2016תמונה ממוזערת לגרסה מ־01:06, 6 באפריל 2016‪391 × 574‬ (19 ק"ב)Bob KThe formula from Harris' paper (called "DFT Even") is the same as MATLAB's formula (called "periodic"). Therefore only two plots are needed, not three.
00:47, 27 באוגוסט 2013תמונה ממוזערת לגרסה מ־00:47, 27 באוגוסט 2013‪374 × 594‬ (13 ק"ב)Bob Kextend continuous plots to the x-axis
06:55, 25 באוגוסט 2013תמונה ממוזערת לגרסה מ־06:55, 25 באוגוסט 2013‪399 × 591‬ (13 ק"ב)Bob KColor code the 3 graphs, and superimpose them on one axis system.
23:25, 22 באוגוסט 2013תמונה ממוזערת לגרסה מ־23:25, 22 באוגוסט 2013‪634 × 571‬ (13 ק"ב)Bob KUser created page with UploadWizard

אין בוויקיפדיה דפים המשתמשים בקובץ זה.

מטא־נתונים