当前位置:网站首页>[matlab] matlab simulates digital baseband transmission system - digital baseband transmission system
[matlab] matlab simulates digital baseband transmission system - digital baseband transmission system
2022-07-04 05:00:00 【Embedded workplace】
Catalog
1、 Digital baseband transmission system
1、 Digital baseband transmission system
clear all;
clc;
N_sample = 8; % Sampling points per symbol
N = 1000; % Number of symbols
Ts = 1; % Duration of each symbol
dt = Ts/N_sample; % Sampling interval
t = 0:dt:(N*N_sample-1)*dt;
T = N*N_sample*dt;
% Generate a unipolar sequence
d = (sign( randn(1,N) ) + 1)/2;
data = sigexpand(d,N_sample); % Insert N_sample-1 individual 0
% Generate unipolar waveform
gt1 = ones(1,N_sample); %NRZ Non return to zero waveform
gt2 = [ones(1,N_sample/2), zeros(1,N_sample/2)];%RZ Zeroing waveform
st1 = conv(data,gt1);
st边栏推荐
猜你喜欢

Can closed data be deleted by DBCA? can

rac删除损坏的磁盘组

GUI application: socket network chat room

Utiliser des unités de mesure dans votre code pour une vie meilleure

Annex V: briefing on the attack process docx

Share some of my telecommuting experience

Dp83848+ network cable hot plug

Detailed comparison of Hynix emmc5.0 and 5.1 series

定制一个自己项目里需要的分页器

中科磐云—D模块解析以及评分标准
随机推荐
中职组网络安全—内存取证
RPC - grpc simple demo - learn / practice
PaddleHub人脸识别方案部署,将训练好的模型在pytchrom中进行部署应用
附件二:攻防演练保密协议.docx
每日刷题记录 (十二)
C basic (VII) document operation
Test cs4344 stereo DA converter
QT qtableview data column width adaptation
Operate the server remotely more gracefully: the practice of paramiko Library
Talking about JVM
全国职业院校技能大赛(中职组)网络安全竞赛试题—解析
appliedzkp zkevm(13)中的Public Inputs
Use units of measure in your code for a better life
分享一些我的远程办公经验
cmake
Capturing and sorting out external Fiddler -- Conversation bar and filter
Notes on the paper "cross view transformers for real time map view semantic segmentation"
中科磐云—2022广西逆向解析思路
STM32F1与STM32CubeIDE编程实例-74HC595驱动4位7段数码管
【MATLAB】通信信号调制通用函数 — 窄带高斯白噪声的生成