aboutsummaryrefslogtreecommitdiff
path: root/octave/ldpc.m
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/ldpc.m
parent6588e77f38bdebd7adffe091b22e7760d95d0ccb (diff)
manually fixed spelling errors from codec2 #406
Diffstat (limited to 'octave/ldpc.m')
-rw-r--r--octave/ldpc.m2
1 files changed, 1 insertions, 1 deletions
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)];