aboutsummaryrefslogtreecommitdiff
path: root/octave
diff options
context:
space:
mode:
authordrowe67 <[email protected]>2023-07-14 10:58:22 +0930
committerDavid Rowe <[email protected]>2023-07-14 10:58:22 +0930
commit0c2e969cfbe85548801eeb20ad8113969604892a (patch)
tree3d14c471174eec69ea14dbe8bf86c7411b8c42a1 /octave
parent6588e77f38bdebd7adffe091b22e7760d95d0ccb (diff)
manually fixed spelling errors from codec2 #406
Diffstat (limited to 'octave')
-rw-r--r--octave/esno_est.m2
-rw-r--r--octave/fdmdv.m2
-rw-r--r--octave/ldpc.m2
-rw-r--r--octave/ofdm_rx.m2
4 files changed, 4 insertions, 4 deletions
diff --git a/octave/esno_est.m b/octave/esno_est.m
index f482fb1..590208c 100644
--- a/octave/esno_est.m
+++ b/octave/esno_est.m
@@ -1,7 +1,7 @@
% esno_est.m
% David Rowe Mar 2017
%
-% Functions for esimating Es/No from QPSK symbols, and supporting tests
+% Functions for estimating Es/No from QPSK symbols, and supporting tests
1;
diff --git a/octave/fdmdv.m b/octave/fdmdv.m
index 49b9f61..f13aa26 100644
--- a/octave/fdmdv.m
+++ b/octave/fdmdv.m
@@ -629,7 +629,7 @@ function snr_dB = calc_snr(f, sig_est, noise_est)
endfunction
-% sets up test bits system. make sure rand('state', 1) has just beed called
+% sets up test bits system. make sure rand('state', 1) has just been called
% so we generate the right test_bits pattern!
function f = init_test_bits(f)
diff --git a/octave/ldpc.m b/octave/ldpc.m
index 0938b8d..e9d6ede 100644
--- a/octave/ldpc.m
+++ b/octave/ldpc.m
@@ -132,7 +132,7 @@ function [detected_data paritychecks] = ldpc_dec(code_param, max_iterations, ...
input_decoder_c = bit_likelihood(1:(code_param.ldpc_coded_bits_per_frame-Nunused));
- % insert "very likely" LLRs for unsed data bits (in 1's stuffing case)
+ % insert "very likely" LLRs for unused data bits (in 1's stuffing case)
input_decoder_c = [input_decoder_c(1:code_param.data_bits_per_frame) ...
100*ones(1,Nunused) ...
input_decoder_c(code_param.data_bits_per_frame+1:end)];
diff --git a/octave/ofdm_rx.m b/octave/ofdm_rx.m
index 55e93cb..fea4b33 100644
--- a/octave/ofdm_rx.m
+++ b/octave/ofdm_rx.m
@@ -13,7 +13,7 @@
ofdm_rx("test_datac0.raw","datac0","packetsperburst",1)
- 3. Burst mode, enable only postamble detecion:
+ 3. Burst mode, enable only postamble detection:
ofdm_rx("test_datac0.raw","datac0","packetsperburst",1, "postambletest")
#}