代码搜索:matlab RFID

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

代码结果 10,000
www.eeworm.com/read/457711/7319101

m eaa2.m

% 《工程线性代数(MATLAB版)》附录A第二节演示程序eaa2 % 陈怀琛,高淑萍,杨威合编,电子工业出版社,2007年6月 % format,echo on pause,x1=sqrt(5),x2=1.37,y=3/x2 pause,a=[1,2,3;4,5,6;7,8,9] pause,x=[-1.3 sqrt(3) (1+2+3)/5*4] pause,x(5)=abs(x
www.eeworm.com/read/457711/7319106

m ea604.m

% 《工程线性代数(MATLAB版)》第六章例题6.4程序ea604 % 陈怀琛,高淑萍,杨威合编,电子工业出版社,2007年6月 % 特征值和特征向量 % A=[3,2,4;2,0,2;4,2,3]; % 输入系数矩阵 f=poly(A), % 求特征多项式(步骤1) r=roots(f),r=real(r) % 求特征根(步骤2),并去掉误差造成的虚部
www.eeworm.com/read/457168/7333220

m msiws_2008_2009_l_t5_network_design.m

% ******************************************************************************************************************* % ********************
www.eeworm.com/read/456354/7351308

m ip_05_07.m

% MATLAB script for Illustrated Problem 7, Chapter 5. 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/456354/7351385

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); % plotting c
www.eeworm.com/read/456193/7355007

m isvarname.m

function t = isvarname(s) %ISVARNAME True for valid variable name. % ISVARNAME(S) is true if S is a valid MATLAB variable name. % A valid variable name is a character string of letters, digits
www.eeworm.com/read/455115/7377679

html othersites.html

Other highly recommended Computer Vision software sites
www.eeworm.com/read/455115/7377904

html~ vislinks.html~

www.eeworm.com/read/454809/7382709

m 例11-14 .m

/* * engdemo.c */ #include #include #include //engine.h中包含有使用计算引擎时要用的函数声明 #include "engine.h" #define BUFSIZE 256 int main() { Engine *ep; mxA
www.eeworm.com/read/454809/7382744

m 例2-62.m

>> fn='2*exp(-x)*sin(x)'; %定义fn函数 >> xmin=fminbnd(fn,2,5) %在区间(2,5)之间寻找最小值 >> emin=5*pi/4-xmin %求最小值的误差 >> x=xmin; %令x为最小值点 >> ymin=eval(fn)