⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 qam_constellation.m

📁 基于Matlab
💻 M
字号:
function [C,csig] = qam_constellation(M)% a convenient quantityN = sqrt(M/4);					% M = 4N^2% check if valid M (via checking if N is an integer)if N ~= floor(N),   error('M must be of the form 4*N^2 for integer N'); end% generate constellation pointsC=2*[0:sqrt(M)-1]-sqrt(M)+1;C=ones(sqrt(M),1)*C;C=C+i*C';C=C(:);csig=sqrt(mean(abs(C).^2));C=C/csig;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -