Open .DAT files generated by OFDM Module

Hi all,

I’m trying to open the .DAT files that are generated by OFDM Module with
option --log but I can’t. I have tried with cat, vim, vi, jeditor(with
hex
plugins), open office. With excel and notepad open the archive but only
with
ascii characters but I need to see the result of modulation.

Cheers

View this message in context:
http://old.nabble.com/Open-.DAT-files-generated-by-OFDM-Module-tp28885841p28885841.html
Sent from the GnuRadio mailing list archive at Nabble.com.

On Mon, Jun 14, 2010 at 7:45 PM, Chris_Spain [email protected]
wrote:

Hi all,

I’m trying to open the .DAT files that are generated by OFDM Module with
option --log but I can’t. I have tried with cat, vim, vi, jeditor(with hex
plugins), open office. With excel and notepad open the archive but only with
ascii characters but I need to see the result of modulation.

Cheers

Files are stored in binary format. You need to open it as such. There
are some utilities that are in gr-utils/src/python that can be used
for quick plotting (gr_plot_*.py). They use the Scipy fromfile command
to read the samples and plot them with Matplotlib, which you can use
to do your own work.

In the ofdm examples directory, there is a file gr_plot_ofdm.py that
will plot the output of --log in a way that we’ve found useful. You’ll
need Scipy and Matplotlib installed.

Tom