我是靠谱客的博主 安详流沙,最近开发中收集的这篇文章主要介绍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 decode,SCI decoding所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

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

评论列表共有 0 条评论

立即
投稿
返回
顶部