diff options
author | jcorgan | 2008-02-01 16:48:00 +0000 |
---|---|---|
committer | jcorgan | 2008-02-01 16:48:00 +0000 |
commit | 6c7ee8932b84fa5dca0c88d7d80f2efe0aa30a06 (patch) | |
tree | 49ad5bb39263b23426f91442eff20b860fa25d19 /gnuradio-core/src/utils/README | |
parent | 42271ef69334b0b9236bdbfd8aa26c2848249d6d (diff) | |
download | gnuradio-6c7ee8932b84fa5dca0c88d7d80f2efe0aa30a06.tar.gz gnuradio-6c7ee8932b84fa5dca0c88d7d80f2efe0aa30a06.tar.bz2 gnuradio-6c7ee8932b84fa5dca0c88d7d80f2efe0aa30a06.zip |
Moved gnuradio-core/src/utils/ plotting scripts into gr-utils, with some rework.
The gr_plot_data.py class installs into the gnuradio namespace as
gnuradio.plot_data, and the remainder of the scripts install into
$prefix/bin.
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@7536 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'gnuradio-core/src/utils/README')
-rw-r--r-- | gnuradio-core/src/utils/README | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/gnuradio-core/src/utils/README b/gnuradio-core/src/utils/README deleted file mode 100644 index 0c4657ba9..000000000 --- a/gnuradio-core/src/utils/README +++ /dev/null @@ -1,40 +0,0 @@ -* gr_plot_*.py: -These are a collection of Python scripts to enable viewing and analysis of files produced by GNU Radio flow graphs. Most of them work off complex data produced by digital waveforms. - - -** gr_plot_float.py: -Takes a GNU Radio floating point binary file and displays the samples versus time. You can set the block size to specify how many points to read in at a time and the start position in the file. - -By default, the system assumes a sample rate of 1, so in time, each sample is plotted versus the sample number. To set a true time axis, set the sample rate (-R or --sample-rate) to the sample rate used when capturing the samples. - - - -** gr_plot_iq.py: -Takes a GNU Radio complex binary file and displays the I&Q data versus time. You can set the block size to specify how many points to read in at a time and the start position in the file. - -By default, the system assumes a sample rate of 1, so in time, each sample is plotted versus the sample number. To set a true time axis, set the sample rate (-R or --sample-rate) to the sample rate used when capturing the samples. - - - -** gr_plot_const.py: -Takes a GNU Radio complex binary file and displays the I&Q data versus time and the constellation plot (I vs. Q). You can set the block size to specify how many points to read in at a time and the start position in the file. - -By default, the system assumes a sample rate of 1, so in time, each sample is plotted versus the sample number. To set a true time axis, set the sample rate (-R or --sample-rate) to the sample rate used when capturing the samples. - - - -** gr_plot_fft_c.py: -Takes a GNU Radio complex binary file and displays the I&Q data versus time as well as the frequency domain (FFT) plot. The y-axis values are plotted assuming volts as the amplitude of the I&Q streams and converted into dBm in the frequency domain (the 1/N power adjustment out of the FFT is performed internally). - -The script plots a certain block of data at a time, specified on the command line as -B or --block. This value defaults to 1000. The start position in the file can be set by specifying -s or --start and defaults to 0 (the start of the file). - -By default, the system assumes a sample rate of 1, so in time, each sample is plotted versus the sample number. To set a true time and frequency axis, set the sample rate (-R or --sample-rate) to the sample rate used when capturing the samples. - - - -** gr_plot_fft_f.py: -Takes a GNU Radio floating point binary file and displays the samples versus time as well as the frequency domain (FFT) plot. The y-axis values are plotted assuming volts as the amplitude of the I&Q streams and converted into dBm in the frequency domain (the 1/N power adjustment out of the FFT is performed internally). - -The script plots a certain block of data at a time, specified on the command line as -B or --block. This value defaults to 1000. The start position in the file can be set by specifying -s or --start and defaults to 0 (the start of the file). - -By default, the system assumes a sample rate of 1, so in time, each sample is plotted versus the sample number. To set a true time and frequency axis, set the sample rate (-R or --sample-rate) to the sample rate used when capturing the samples. |