代码搜索:MATLAB

找到约 10,000 项符合「MATLAB」的源代码

代码结果 10,000
www.eeworm.com/read/432198/8620438

txt plain_text.txt

Can you please say to me where is the error in my "matlab code".Thank you very much. I want to plot a BER vs SNR for a 16 QAM constellation.
www.eeworm.com/read/288430/8633256

m main_logistic.m

% Logistic 映射 % 使用平台 - Matlab7.0 % 作者:陆振波,海军工程大学 % 欢迎同行来信交流与合作,更多文章与程序下载请访问我的个人主页 % 电子邮件:luzhenbo@yahoo.com.cn % 个人主页:http://luzhenbo.88uu.com.cn % % 表达式 % x(n+1) = lambda * x(n) * (1 - x(n))
www.eeworm.com/read/288389/8636012

txt readme.txt

Some Matlab scripts to test the MCMC toolbox. See http://www.helsinki.fi/~mjlaine/mcmc/ for details. marko.laine@helsinki.fi
www.eeworm.com/read/287917/8661238

m ex3_23.m

X=input('Enter X:'); E=zeros(size(X)); F=eye(size(X)); n=1; while norm(F,1)>0 E=E+F; F=F*X/n; n=n+1; end E xpm(X) %调用MATLAB矩阵指数函数求矩阵指数
www.eeworm.com/read/431621/8664742

m ip_05_07.m

% MATLAB script for Illustrated Problem 5.7. echo on n0=.5*randn(100,1); n1=.5*randn(100,1); n2=.5*randn(100,1); n3=.5*randn(100,1); x1=1.+n0; y1=n1; x2=n2; y2=1.+n3; plot(x1,y1,'o',x2,y2,'*
www.eeworm.com/read/387560/8665144

m eml_sps_test.m

% eml_sps_test.m % compare aspire and matlab versions of E-ML-SPS % Copyright Mar 2000, Jeff Fessler, The University of Michigan % % generate data % if ~isvar('yi'), disp 'setup eml_sps_test' f.dir
www.eeworm.com/read/387560/8665265

m eml_psca_test.m

% eml_psca_test.m % compare aspire and matlab versions of E-ML-PSCA % Copyright Apr 2000, Jeff Fessler, The University of Michigan % % generate data % if ~isvar('yi'), disp 'setup eml_psca_test' if
www.eeworm.com/read/287843/8665322

m ip_02_05.m

% MATLAB script for Illustrative Problem 5, Chapter 2. clear echo on % first part Sx1=[ones(1,32)]; Rx1=ifft(Sx1,32); % second part Sx2=[ones(1,16),zeros(1,224),ones(1,16)]; Rx2=ifft(Sx2,256)
www.eeworm.com/read/287843/8665743

m ip_05_07.m

% MATLAB script for Illustrated Problem 5.7. clear echo on n0=.5*randn(100,1); n1=.5*randn(100,1); n2=.5*randn(100,1); n3=.5*randn(100,1); x1=1.+n0; y1=n1; x2=n2; y2=1.+n3; plot(x1,y1,'o',x
www.eeworm.com/read/431603/8666116

m ip_02_05.m

% MATLAB script for Illustrative Problem 5, Chapter 2. echo on % first part Sx1=[ones(1,32)]; Rx1=ifft(Sx1,32); % second part Sx2=[ones(1,16),zeros(1,224),ones(1,16)]; Rx2=ifft(Sx2,256); % pl