קובץ:Aliasing between a positive and a negative frequency.png

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

Aliasing_between_a_positive_and_a_negative_frequency.png(694 × 452 פיקסלים, גודל הקובץ: 44 ק"ב, סוג MIME‏: image/png)

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

תקציר

תיאור
English: This figure depicts two complex sinusoids, colored gold and cyan, that fit the same sets of real and imaginary sample points. They are thus aliases of each other when sampled at the rate (fs) indicated by the grid lines. The gold-colored function depicts a positive frequency, because its real part (the cos function) leads its imaginary part by 1/4 of one cycle. The cyan function depicts a negative frequency, because its real part lags the imaginary part.
תאריך יצירה
מקור נוצר על־ידי מעלה היצירה
יוצר Bob K
אישורים והיתרים
(שימוש חוזר בקובץ זה)
אני, בעל זכויות היוצרים על עבודה זו, מפרסם בזאת את העבודה תחת הרישיון הבא:
Creative Commons CC-Zero קובץ זה זמין לפי תנאי הקדשה עולמית לנחלת הכלל CC0 1.0 של Creative Commons.
האדם ששייך יצירה להיתר הזה הקדיש את היצירה לנחלת הכלל על־ידי ויתור על כל הזכויות שלו או שלה על היצירה בכל העולם לפי חוק זכויות יוצרים, לרבות כל הזכויות הקשורות או הסמוכות כקבוע בחוק. באפשרותך להעתיק, לשנות, להפיץ, או להציג את היצירה, אפילו למטרות מסחריות, וכל זה אפילו מבלי לבקש רשות.

גרסאות אחרות

Derivative works of this file:  Aliasing between a positive and a negative frequency.svg

קיימת תמונה חדשה תמונה זו בגרסה וקטורית בפורמט "SVG". יש להחליף את התמונה הנוכחית בתמונה החדשה.

File:Aliasing between a positive and a negative frequency.png → File:Aliasing between a positive and a negative frequency.svg


בשפות אחרות
Alemannisch  Bahasa Indonesia  Bahasa Melayu  British English  català  čeština  dansk  Deutsch  eesti  English  español  Esperanto  euskara  français  Frysk  galego  hrvatski  Ido  italiano  lietuvių  magyar  Nederlands  norsk bokmål  norsk nynorsk  occitan  Plattdüütsch  polski  português  português do Brasil  română  Scots  sicilianu  slovenčina  slovenščina  suomi  svenska  Tiếng Việt  Türkçe  vèneto  Ελληνικά  беларуская (тарашкевіца)  български  македонски  нохчийн  русский  српски / srpski  татарча/tatarça  українська  ქართული  հայերեն  বাংলা  தமிழ்  മലയാളം  ไทย  한국어  日本語  简体中文  繁體中文  עברית  العربية  فارسی  +/−
New SVG image

PNGהתפתחות 
InfoField
 
LibreOffice עם‎‎ נוצרה ה PNG תמונת מפת סיביות
Octave/gnuplot source
InfoField
click to expand

This graphic was created with the help of the following Octave script:

graphics_toolkit gnuplot
gold = [251 159 3]/256;         % arbitrary color choice
sam_per_sec = 1;
T = 1/sam_per_sec;              % sample interval
dt = T/20;                      % time-resolution of continuous functions
cycle_per_sec = sam_per_sec/8;  % sam_per_sec = 8 * cycle_per_sec (satisfies Nyquist)

figure
subplot(3,1,1)
xlim([-2 10])
ylim([-1.3 1.3])

% Plot cosine function
start_time_sec = -2;
stop_time_sec = 10;
x = start_time_sec : dt : stop_time_sec;
y = cos(2*pi*cycle_per_sec*x);
plot(x, y, "color", gold, "linewidth", 4)
box off           % no border around plot please
hold on           % same axes for next 3 plots

% Plot sine function
start_time_sec = 0;
stop_time_sec = 10;
x = start_time_sec : dt : stop_time_sec;
y = sin(2*pi*cycle_per_sec*x);
plot(x, y, "color", gold, "linewidth", 4)

% Sample cosine function at sample-rate (1/T)
start_time_sec = 0;
stop_time_sec = 8;
x = start_time_sec : T : stop_time_sec;
y = cos(2*pi*cycle_per_sec*x);
plot(x, y, "color", "black", ".")

% Sample sine function
y = sin(2*pi*cycle_per_sec*x);
plot(x, y, "color", "black", ".")

set(gca, "xaxislocation", "origin")
set(gca, "yaxislocation", "origin")
set(gca, "xgrid", "on");
set(gca, "ygrid", "off");
set(gca, "ytick", [0]);
set(gca, "xtick", [0:8]);

subplot(3,1,2)
xlim([-2 10])
ylim([-1.3 1.3])
cycle_per_sec2 = cycle_per_sec - sam_per_sec;   % negative frequency

% Re-plot same cosine function on new axes
start_time_sec = -2;
stop_time_sec = 10;
x = start_time_sec : dt : stop_time_sec;
y = cos(2*pi*cycle_per_sec*x);
plot(x, y, "color", gold, "linewidth", 4)
box off
hold on

% Plot other cosine function
start_time_sec = -2;
stop_time_sec = 10;
x = start_time_sec : dt : stop_time_sec;
y = cos(2*pi*cycle_per_sec2*x);
plot(x, y, "color", "cyan", "linewidth", 4)

% Sample cosine functions at sample-rate (1/T)
start_time_sec = 0;
stop_time_sec = 8;
x = start_time_sec : T : stop_time_sec;
y = cos(2*pi*cycle_per_sec*x);
plot(x, y, "color", "black", ".")

set(gca, "xaxislocation", "origin")
set(gca, "yaxislocation", "origin")
set(gca, "xgrid", "on");
set(gca, "ygrid", "off");
set(gca, "ytick", [0]);
set(gca, "xtick", [0:8]);

subplot(3,1,3)
xlim([-2 10])
ylim([-1.3 1.3])

% Re-plot original sine function on new axes
start_time_sec = 0;
stop_time_sec = 10;
x = start_time_sec : dt : stop_time_sec;
y = sin(2*pi*cycle_per_sec*x);
plot(x, y, "color", gold, "linewidth", 4)
box off
hold on

% Plot other sine function
start_time_sec = -2;
stop_time_sec = 10;
x = start_time_sec : dt : stop_time_sec;
y = sin(2*pi*cycle_per_sec2*x);
plot(x, y, "color", "cyan", "linewidth", 4)

% Sample sine functions at sample-rate (1/T)
start_time_sec = 0;
stop_time_sec = 8;
x = start_time_sec : T : stop_time_sec;
y = sin(2*pi*cycle_per_sec*x);
plot(x, y, "color", "black", ".")

set(gca, "xaxislocation", "origin")
set(gca, "yaxislocation", "origin")
set(gca, "xgrid", "on");
set(gca, "ygrid", "off");
set(gca, "ytick", [0]);
set(gca, "xtick", [0:8]);

כיתובים

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

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

מוצג

checksum אנגלית

176af466b89d1b29d7b8c6750686d08053d33e6f

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

44,646 בית

452 פיקסל

694 פיקסל

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

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

תאריך/שעהתמונה ממוזערתממדיםמשתמשהערה
נוכחית08:26, 27 במרץ 2013תמונה ממוזערת לגרסה מ־08:26, 27 במרץ 2013‪452 × 694‬ (44 ק"ב)Bob KUser created page with UploadWizard

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

שימוש גלובלי בקובץ

אתרי הוויקי השונים הבאים משתמשים בקובץ זה:

מטא־נתונים