代码搜索:mpsk
找到约 258 项符合「mpsk」的源代码
代码结果 258
www.eeworm.com/read/172656/7139160
14 mpsk 8.14 mpsk
www.eeworm.com/read/291034/8444429
m mpsk.m
%JC 6/20/06
%I was interested in the theory for 8PSK and came across this m-file written in 1999. It
%requires 2 function calls (graymapPSK and grayunmapPSK) which I have
%included and must be unco
www.eeworm.com/read/275377/10821329
m mpsk.m
% 有过采样的mpsk.m
%
% Simulation program to realize BPSK transmission system
%
% Programmed by snowflier,
%
%******************** basic information of the signal **********************
sr=100.0
www.eeworm.com/read/275033/10838507
m mpsk.m
% MPSK
%
% K. Bell
% 11/22/99
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Simulation Parameters
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
M = 8;
K = l
www.eeworm.com/read/484320/6585725
m mpsk.m
clear all;
clc;
k=6;
M=2^k;
Fs=200;
Fd=1; % baud - symbol/second
N=1000; %num of symbol
Ts=1/Fd; %time of sym
Es=1; %symbol's energy
A=sqrt(2*Es/Ts); % amplitude
fc=2;
SNR=25;
sig=randint(
www.eeworm.com/read/226710/14453985
m mpsk.m
%MPSK系统仿真
clear all;
close all;
M=4;%QPSK
EsN0dB=3:0.5:10;
EsN0=10.^(EsN0dB/10);
Es=1;
N0=10.^(-EsN0dB/10);
sigma=sqrt(N0/2);
error=zeros(1,length(EsN0dB));
s_data=zeros(1,length(EsN0d
www.eeworm.com/read/335598/12512707
doc mpsk.doc
www.eeworm.com/read/248289/12585431
m mpsk.m
%JC 6/20/06
%I was interested in the theory for 8PSK and came across this m-file written in 1999. It
%requires 2 function calls (graymapPSK and grayunmapPSK) which I have
%included and must be unco
www.eeworm.com/read/291752/8398162
cpp mpsk_sim.cpp
//
// File = mpsk_sim.cpp
//
#define SIM_NAME "MpskSim\0"
#define SIM_TITLE "Complex Baseband Simulation for M-PSK\0"
#include "global_stuff.h"
#include "m_psk_theory.h"
#include "gausr
www.eeworm.com/read/291752/8398545
h mpsk_symbtowave.h
//
// File = mpsk_iq_mod.h
//
#ifndef _MPSK_IQ_MOD_H_
#define _MPSK_IQ_MOD_H_
#include "signal_T.h"
#include "psmodel.h"
class MpskSymbsToQuadWaves : public PracSimModel
{
public:
M