Файл:Electronic linear filters.svg
Исходный файл (SVG-файл, номинально 1200 × 960 пкс, размер файла: 32 Кб)
Этот файл из на Викискладе и может использоваться в других проектах. Информация с его страницы описания приведена ниже.
Краткое описание
ОписаниеElectronic linear filters.svg |
English: This picture shows the frequency response of all the classic electronic filters of 5th order.
They can be both analog or digital: the output is the same. The first one is the Butterworth filter, that is the smoothest one but it has no ripples. The last one is the Elliptic filter: it is the sharpest one but it shows ripples in both the pass-band and the stop-band. The two Chebyshev filter in the middle have an average behavior, being quite sharp with ripples in part of the spectrum. All the plots have been obtained using the same parameters and the same number of coefficients, thus showing only the properties of the different filters. |
Дата | |
Источник | Собственная работа |
Автор | Alessio Damato |
SVG‑разработка InfoField | |
Исходный код InfoField | Gnuplot code# set the output
set terminal svg enhanced size 1200 960 fname "Times" fsize 25
set output "Electronic_linear_filters.svg"
# axis properties
set xrange [0:1]
set yrange [0:1.1]
set xtics axis
set xtics axis
set key off
# Set up a four-pane multiplot
set size 1,1
set origin 0,0
set multiplot
set title "Butterworth"
set size 0.5,0.5
set origin 0,0.53
plot "electronic_filters.dat" using 1:2 with lines linewidth 3
set title "Chebyshev type 1"
set size 0.5,0.5
set origin 0.5,0.53
plot "electronic_filters.dat" using 1:3 with lines linewidth 3
set title "Chebyshev type 2"
set size 0.5,0.5
set origin 0,0.03
plot "electronic_filters.dat" using 1:4 with lines linewidth 3
set title "Elliptic"
set size 0.5,0.5
set origin 0.5,0.03
plot "electronic_filters.dat" using 1:5 with lines linewidth 3
|
Этот файл был замещён другим файлом File:Filters order5.svg. Рекомендуется использовать другую версию. Пожалуйста, обратите внимание, что удаление замещённых изображений требует консенсуса. Причина замещения: The plotlines of this file are jagged. New version with clean plotlines is available.
|
Matlab source code
In order to make it, first I created a file called electronic_filters.dat with the following Matlab code:
% order of the filters
N = 5;
% cut-off normalized frequency
band = 0.5;
% ripple in the pass-band (dB)
Rpass = 0.5;
% ripple in the stop-band (dB)
Rstop = 20;
w = 0:pi/255:pi;
[num, den] = butter(N, band, 'low');
butterfilter = abs(freqz(num, den ,w));
[num, den] = cheby1(N, Rpass, band);
cheby1filter = abs(freqz(num, den ,w));
[num, den] = cheby2(N, Rstop, band);
cheby2filter = abs(freqz(num, den ,w));
[num, den] = ellip(N, Rpass, Rstop, band);
ellipfilter = abs(freqz(num, den ,w));
F = [w/pi ; butterfilter; cheby1filter; cheby2filter; ellipfilter];
F = F';
save -ascii 'electronic_filters.dat' F;
Then I created the plot with Gnuplot
Лицензирование
Разрешается копировать, распространять и/или изменять этот документ в соответствии с условиями GNU Free Documentation License версии 1.2 или более поздней, опубликованной Фондом свободного программного обеспечения, без неизменяемых разделов, без текстов, помещаемых на первой и последней обложке. Копия лицензии включена в раздел, озаглавленный GNU Free Documentation License.http://www.gnu.org/copyleft/fdl.htmlGFDLGNU Free Documentation Licensetruetrue |
Этот файл доступен по лицензии Creative Commons Attribution-Share Alike 3.0 Unported. | ||
| ||
Этот признак лицензирования был добавлен к этому файлу как часть обновления лицензии GFDL.http://creativecommons.org/licenses/by-sa/3.0/CC BY-SA 3.0Creative Commons Attribution-Share Alike 3.0truetrue |
- Вы можете свободно:
- делиться произведением – копировать, распространять и передавать данное произведение
- создавать производные – переделывать данное произведение
- При соблюдении следующих условий:
- атрибуция – Вы должны указать авторство, предоставить ссылку на лицензию и указать, внёс ли автор какие-либо изменения. Это можно сделать любым разумным способом, но не создавая впечатление, что лицензиат поддерживает вас или использование вами данного произведения.
- распространение на тех же условиях – Если вы изменяете, преобразуете или создаёте иное произведение на основе данного, то обязаны использовать лицензию исходного произведения или лицензию, совместимую с исходной.
Элементы, изображённые на этом файле
изображённый объект
У этого свойства есть некоторое значение без элемента в
апрель 2006
История файла
Нажмите на дату/время, чтобы увидеть версию файла от того времени.
Дата/время | Миниатюра | Размеры | Участник | Примечание | |
---|---|---|---|---|---|
текущий | 15:30, 18 октября 2012 | 1200 × 960 (32 Кб) | wikimediacommons>Spinningspark | Fix broken rendering by resaving from Inkscape |
Использование файла
Нет страниц, использующих этот файл.