概述
Decode an SCI format 0 message using UE settings. Encode a bit vector representing an SCI information payload, and then decode and error-check the result. Use a UE settings structure to create and encode an SCI message.
Create a UE settings structure with 5 MHz bandwidth and extended cyclic prefix length. Generate and encode an SCI format 0 message.
ue = struct('NSLRB','5MHz','CyclicPrefixSL','Extended');
[~,sciBits] = lteSCI(ue);
cw = lteSCIEncode(ue,sciBits);
Decode the SCI message payload bit vector, cw. Use the UE settings structure to determine the SCI message length.
[sciBits,crcErr] = lteSCIDecode(ue,cw);
crcErr
crcErr = logical
0
The cyclic redundancy check returns a zero, indicating that the decoded SCI message has no errors.
最后
以上就是安详流沙为你收集整理的matlab decode,SCI decoding的全部内容,希望文章能够帮你解决matlab decode,SCI decoding所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复