代码搜索结果

找到约 10,000 项符合 Q 的代码

q.m

function [a]=Q(rx_symbol,modulation) if ~isempty(findstr(modulation, 'BPSK')) %BPSK a = real(rx_symbol); elseif ~isempty(findstr(modulation, 'QPSK')) % QPSK soft_bits = zeros(2*size(rx_symb

q.m

function [a]=Q(rx_symbol,modulation) %*********************************************************************** % This file carries out 'slicing' operation to the nearest constellation %*************

q.m

function [a]=Q(rx_symbol,modulation) %*********************************************************************** % This file carries out 'slicing' operation to the nearest constellation %*************

q.m

function y=q(x) y=0.5.*erfc(x./sqrt(2));

q.c

int array[10]; main() { char i; i=4; i=4; i=4; i=4; array[i++] = 4; }

q.txt

函数名: qsort 功 能: 使用快速排序例程进行排序 用 法: void qsort(void *base, int nelem, int width, int (*fcmp)()); 程序例: #include #include #include int sort_function( const v

q.m

% Q function used to compute the Pe for the % different modulation schemes function result=Q(x) result=0.5*erfc(x/sqrt(2));

q.m

function [y]=q(x); %Q函数计算公式 y=erfc(x/sqrt(2))/2;