File:Gauss-Filter-Impulsantwort.svg

Summary

Description
Deutsch: Gauss-Filter, Impulsantwort (auf Bandbreite B=1 bezogen)
Date 8 March 2015 (upload date)
Source Own work
Author Chris828
SVG development
InfoField
 The SVG code is valid.
 This chart was created with MATLAB.
Category:Valid SVG created with MATLAB code#Gauss-Filter-Impulsantwort.svg
 Category:Translation possible - SVGThis chart uses embedded text that can be easily translated using a text editor.
Source code
InfoField

MATLAB code

a = pi/sqrt(log(sqrt(2)));
t = -1:1/1000:1;
h = a / sqrt(pi) * exp(-(a * t).^2);
plot(t, h, 'r', 'LineWidth', 2);
xlabel('t [s]');
ylabel('h(t)');
grid on;
ylim([0 4]);
set(gca, 'xtick', [-1 -0.5 0 0.5 1], 'ytick', [0 1 2 3 4]);

Licensing

I, the copyright holder of this work, hereby publish it under the following license:
Creative Commons CC-Zero This file is made available under the Creative Commons CC0 1.0 Universal Public Domain Dedication.
The person who associated a work with this deed has dedicated the work to the public domain by waiving all of their rights to the work worldwide under copyright law, including all related and neighboring rights, to the extent allowed by law. You can copy, modify, distribute and perform the work, even for commercial purposes, all without asking permission.

Category:CC-Zero#Gauss-Filter-Impulsantwort.svgCategory:Self-published work
Category:Filter diagrams Category:SVG normal distribution
Category:CC-Zero Category:Filter diagrams Category:SVG normal distribution Category:Self-published work Category:Translation possible - SVG Category:Valid SVG created with MATLAB code