我是靠谱客的博主 安详流沙,这篇文章主要介绍matlab decode,SCI decoding,现在分享给大家,希望可以做个参考。

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内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(66)

评论列表共有 0 条评论

立即
投稿
返回
顶部