summaryrefslogtreecommitdiff
path: root/gr-utils/plot_tools/gr_plot
blob: 82fe846dc25a192ab902ee6cbe04a70f777af8c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/usr/bin/env python
#
# Copyright 2007,2008 Free Software Foundation, Inc.
#
# This file is part of GNU Radio
#
# SPDX-License-Identifier: GPL-3.0-or-later
#
#

from __future__ import print_function

from gnuradio.plot_data import plot_data


def main():
    parser = plot_data.setup_options()
    args = parser.parse_args()
    plot_data(None, args.files, args)

if __name__ == "__main__":
    try:
        main()
    except KeyboardInterrupt:
        pass