diff options
author | Tom Rondeau <tom@trondeau.com> | 2013-11-17 17:44:57 -0500 |
---|---|---|
committer | Tom Rondeau <tom@trondeau.com> | 2013-11-17 17:44:57 -0500 |
commit | 061bb4e56df7fcb093bb1fb0a48e3396f5b0d19e (patch) | |
tree | 2c1aef1f4cae2ce3b3c55435f3cafcd2e76f63b4 /gr-filter/examples | |
parent | 1b7fe57e0ce0e0fd9a23690072461123b6f955e8 (diff) |
filter: fixed missing copyright and import sys in examples
Diffstat (limited to 'gr-filter/examples')
-rwxr-xr-x | gr-filter/examples/fft_filter_ccc.py | 21 | ||||
-rwxr-xr-x | gr-filter/examples/fir_filter_ccc.py | 21 | ||||
-rwxr-xr-x | gr-filter/examples/fir_filter_fff.py | 21 | ||||
-rwxr-xr-x | gr-filter/examples/reconstruction.py | 1 |
4 files changed, 64 insertions, 0 deletions
diff --git a/gr-filter/examples/fft_filter_ccc.py b/gr-filter/examples/fft_filter_ccc.py index aaa3c6e6eb..4979cfedda 100755 --- a/gr-filter/examples/fft_filter_ccc.py +++ b/gr-filter/examples/fft_filter_ccc.py @@ -1,4 +1,24 @@ #!/usr/bin/env python +# +# Copyright 2013 Free Software Foundation, Inc. +# +# This file is part of GNU Radio +# +# GNU Radio is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3, or (at your option) +# any later version. +# +# GNU Radio is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GNU Radio; see the file COPYING. If not, write to +# the Free Software Foundation, Inc., 51 Franklin Street, +# Boston, MA 02110-1301, USA. +# from gnuradio import gr, filter from gnuradio import analog @@ -6,6 +26,7 @@ from gnuradio import blocks from gnuradio import eng_notation from gnuradio.eng_option import eng_option from optparse import OptionParser +import sys try: import scipy diff --git a/gr-filter/examples/fir_filter_ccc.py b/gr-filter/examples/fir_filter_ccc.py index 0991124b8d..2a9241858c 100755 --- a/gr-filter/examples/fir_filter_ccc.py +++ b/gr-filter/examples/fir_filter_ccc.py @@ -1,4 +1,24 @@ #!/usr/bin/env python +# +# Copyright 2013 Free Software Foundation, Inc. +# +# This file is part of GNU Radio +# +# GNU Radio is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3, or (at your option) +# any later version. +# +# GNU Radio is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GNU Radio; see the file COPYING. If not, write to +# the Free Software Foundation, Inc., 51 Franklin Street, +# Boston, MA 02110-1301, USA. +# from gnuradio import gr, filter from gnuradio import analog @@ -6,6 +26,7 @@ from gnuradio import blocks from gnuradio import eng_notation from gnuradio.eng_option import eng_option from optparse import OptionParser +import sys try: import scipy diff --git a/gr-filter/examples/fir_filter_fff.py b/gr-filter/examples/fir_filter_fff.py index 549b543498..c9c5556da3 100755 --- a/gr-filter/examples/fir_filter_fff.py +++ b/gr-filter/examples/fir_filter_fff.py @@ -1,4 +1,24 @@ #!/usr/bin/env python +# +# Copyright 2013 Free Software Foundation, Inc. +# +# This file is part of GNU Radio +# +# GNU Radio is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3, or (at your option) +# any later version. +# +# GNU Radio is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GNU Radio; see the file COPYING. If not, write to +# the Free Software Foundation, Inc., 51 Franklin Street, +# Boston, MA 02110-1301, USA. +# from gnuradio import gr, filter from gnuradio import analog @@ -6,6 +26,7 @@ from gnuradio import blocks from gnuradio import eng_notation from gnuradio.eng_option import eng_option from optparse import OptionParser +import sys try: import scipy diff --git a/gr-filter/examples/reconstruction.py b/gr-filter/examples/reconstruction.py index 85704bda2b..fd8ba87a2f 100755 --- a/gr-filter/examples/reconstruction.py +++ b/gr-filter/examples/reconstruction.py @@ -23,6 +23,7 @@ from gnuradio import gr, digital from gnuradio import filter from gnuradio import blocks +import sys try: from gnuradio import channels |