代码搜索:h12

找到约 96 项符合「h12」的源代码

代码结果 96
www.eeworm.com/read/315321/13545956

m h_himm.m

% Program: h_himm.m % Description: Evaluates the Hessian of the % Himmelblau function. % To Run: Execute the commands: % x = [x1 x2]' % e.g., x = [1 2]' % H = h_himm(x) %========================
www.eeworm.com/read/274320/10876357

m mseqxcorr.m

%------------------------------------------------------------- % Compute autocorrelation of an m-sequence %------------------------------------------------------------- %--- compute maximal leng
www.eeworm.com/read/226667/14455748

m mseqxcorr.m

%------------------------------------------------------------- % Compute autocorrelation of an m-sequence %------------------------------------------------------------- %--- compute maximal leng
www.eeworm.com/read/353536/10441130

m zf_decode.m

% Zero Force Decode function X_receive = ZF_decode(H11, H12, H21, H22, X_odd, X_even, Ncarr) % prepare for normalization h = h11*conj(h12)+h21*conj(h22) H = H11.*conj(H12)
www.eeworm.com/read/353536/10441025

m df_decode.m

% Decision Feedback Dectection function X_receive = DF_decode(H11, H12, H21, H22, X_odd, X_even, Ncarr) % prepare for normalization H1 = H11.*conj(H12) + H21.*conj(H22); % H_ZF H2 =
www.eeworm.com/read/428096/8896000

m stbc_decode_tx2rx2.m

function output=stbc_decode_TX2RX2(H,R) %---------------------------------------------------------------------- %在两发两收条件下对接收信号进行译码 %H为接收端已知的信道矩阵,H的第一列与第二列分别为第一个发送天线与第一个接收天线和第二个接收天线间的信道参数; %H的第三列与第
www.eeworm.com/read/222672/14680184

m stbc_decode_tx2rx2.m

function output=stbc_decode_TX2RX2(H,R) %---------------------------------------------------------------------- %在两发两收条件下对接收信号进行译码 %H为接收端已知的信道矩阵,H的第一列与第二列分别为第一个发送天线与第一个接收天线和第二个接收天线间的信道参数; %H的第三列与第
www.eeworm.com/read/399594/7845553

m mrc.m

function [out] = MRC(in,ch_f) [K,D,N,G,N_t,N_r,L,C]= header; input= in; for n = 1:N/N_t, b = rem(n-1,3)+1; for k = 1:D, Y11 = input(1,k,2*n-1); Y12 = input(1,k,2*n);
www.eeworm.com/read/436942/7758525

m pag3.m

figure h12=uicontrol('Style','text',... 'Units','normalized',... 'Position',[.0 .0 1.0 1.0],... 'String','TEXTUL...',... 'ForegroundColor','red',... 'BackgroundColor','white');
www.eeworm.com/read/360606/10085156

m h_to_s.m

function S=H_to_S(H,Z0); % converts h-parameters to s-parameters h11=H(1,1)/Z0; h12=H(1,2); h21=H(2,1); h22=H(2,2)*Z0; delta=(h11+1)*(h22+1)-h12*h21; s11=(h11-1)*(h22+1)-h12*h21; s12=2*h