From 4ffc574b16dc5837c534a2aa56310453d9dc24e9 Mon Sep 17 00:00:00 2001 From: drowe67 Date: Sun, 18 Mar 2018 20:33:03 +0000 Subject: [PATCH] renamed a few internal variables git-svn-id: https://svn.code.sf.net/p/freetel/code@3417 01035d8c-6547-0410-b346-abe4f91aad63 --- codec2-dev/octave/ofdm_ldpc_rx.m | 2 +- codec2-dev/octave/ofdm_ldpc_tx.m | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/codec2-dev/octave/ofdm_ldpc_rx.m b/codec2-dev/octave/ofdm_ldpc_rx.m index 98476c5a..4f0614eb 100644 --- a/codec2-dev/octave/ofdm_ldpc_rx.m +++ b/codec2-dev/octave/ofdm_ldpc_rx.m @@ -11,7 +11,7 @@ [ ] way to fall out of sync #} -function ofdm_rx(filename, interleave_frames = 1, error_pattern_filename) +function ofdm_ldpc_rx(filename, interleave_frames = 1, error_pattern_filename) ofdm_lib; ldpc; gp_interleaver; diff --git a/codec2-dev/octave/ofdm_ldpc_tx.m b/codec2-dev/octave/ofdm_ldpc_tx.m index 05bf92bf..aaddb7f9 100644 --- a/codec2-dev/octave/ofdm_ldpc_tx.m +++ b/codec2-dev/octave/ofdm_ldpc_tx.m @@ -9,11 +9,11 @@ i) 4 frame interleaver, 10 seconds, AWGN channel at Eb/No=3dB - octave:4> ofdm_tx('awgn_ebno_3dB_700d.raw',4, 10,3); + octave:4> ofdm_ldpc_tx('awgn_ebno_3dB_700d.raw',4, 10,3); ii) 4 frame interleaver, 10 seconds, HF channel at Eb/No=6dB - ofdm_tx('hf_ebno_6dB_700d.raw', 4, 10, 6, 'hf'); + ofdm_ldpc_tx('hf_ebno_6dB_700d.raw', 4, 10, 6, 'hf'); #} @@ -32,7 +32,7 @@ #} -function ofdm_tx(filename, Nsec, interleave_frames = 1, EbNodB=100, channel='awgn', freq_offset_Hz=0) +function ofdm_ldpc_tx(filename, Nsec, interleave_frames = 1, EbNodB=100, channel='awgn', freq_offset_Hz=0) ofdm_lib; ldpc; gp_interleaver; -- 2.25.1