diff options
Diffstat (limited to 'gr-utils/python/utils/gr_plot_fft')
-rwxr-xr-x | gr-utils/python/utils/gr_plot_fft | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/gr-utils/python/utils/gr_plot_fft b/gr-utils/python/utils/gr_plot_fft deleted file mode 100755 index 9851c08007..0000000000 --- a/gr-utils/python/utils/gr_plot_fft +++ /dev/null @@ -1,26 +0,0 @@ -#!/usr/bin/env python -# -# Copyright 2012 Free Software Foundation, Inc. -# -# This file is part of GNU Radio -# -# SPDX-License-Identifier: GPL-3.0-or-later -# -# - -from gnuradio.plot_fft_base import plot_fft_base - -# This is a wrapper program for plot_fft_base. It handles any data -# type and defaults to complex64. - -def main(): - parser = plot_fft_base.setup_options() - args = parser.parse_args() - - plot_fft_base(None, args.file, args) - -if __name__ == "__main__": - try: - main() - except KeyboardInterrupt: - pass |