We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7926ee6 commit 8cc5fc4Copy full SHA for 8cc5fc4
2 files changed
PDCCH_decoder.m
@@ -63,6 +63,9 @@
63
end
64
65
E = length(f_tilde);
66
+if E > 8192
67
+ error('polar_3gpp_matlab:UnsupportedBlockLength','E should be no greater than 8192.');
68
+end
69
70
% The CRC polynomial used in 3GPP PBCH and PDCCH channel is
71
% D^24 + D^23 + D^21 + D^20 + D^17 + D^15 + D^13 + D^12 + D^8 + D^4 + D^2 + D + 1
PDCCH_encoder.m
@@ -54,6 +54,9 @@
54
if A > 140
55
error('polar_3gpp_matlab:UnsupportedBlockLength','A should be no greater than 140.');
56
57
58
59
60
61
62
0 commit comments