代码搜索:matlab RFID
找到约 10,000 项符合「matlab RFID」的源代码
代码结果 10,000
www.eeworm.com/read/359724/10127783
m amp104.m
%matlab program 1-4
a=[-40.4 -139 -150;1 0 0;0 1 0];
b=[1 0 0]';
c=[0 18 360];
d=0;
sys=ss(a,b,c,d)
www.eeworm.com/read/359724/10127785
m amp113.m
%Matlab Program 1-13
%Create system model
sys=tf(1,[1 10],'inputDelay',0.5);
set(sys,'inputname','Threst','outputname','Velocity');
sys
get(sys)
www.eeworm.com/read/359724/10127786
m amp103.m
%matlab program 1-3
num={[4 32],0;[12 64 0],[8,32]};
den={[1 12 32],[1 12 32];[1 12 32],[1 12 32]};
sys=tf(num,den)
www.eeworm.com/read/359724/10127787
m amp110.m
%MATLAB PROGRAM 1-10
%Create system model
num=2;
den=[1 1];
sys=tf(num,den,'InputDelay',0.1)
www.eeworm.com/read/359724/10127800
m amp207.m
%Matlab Program 2-7
%Create system model
a=[-0.5572 -0.7814;0.7814 0];
b=[1 0]';
c=[1.9691 6.4493];
d=0;
sys=ss(a,b,c,d);
%Step response of the system
subplot(221)
step(sys)
%Initial con
www.eeworm.com/read/164099/10129319
m c6ex1.m
% MATLAB symbolic toolbox solution for Example 6-1
%
V = sym('(-0.5*s+2.5)/(s^2+1)+2/s');
Z = sym('s/10+8/(5*s)+1');
I = V/Z
i = ilaplace(I)
www.eeworm.com/read/164053/10133569
c my_yprime.c
/*=================================================================
*
* YPRIME.C Sample .MEX file corresponding to YPRIME.M
* Solves simple 3 body orbit problem
*
* The calling synt
www.eeworm.com/read/164052/10133582
m exm1273_1.m
%exm1273_1.m
!md d:\mywork
cd d:\mywork
ss=char(which('engexam.c','-all'));
dos(['copy ',ss,' d:\mywork']);
mex -f h:\matlab\bin\bccengmatopts.bat engexam.c
!engexam
!del engexam.c
www.eeworm.com/read/359579/10135524
m main_logistic.m
% Logistic 映射
% 使用平台 - Matlab6.5 / Matlab7.0
% 作者:陆振波,海军工程大学
% 欢迎同行来信交流与合作,更多文章与程序下载请访问我的个人主页
% 电子邮件:luzhenbo@yahoo.com.cn
% 个人主页:http://luzhenbo.88uu.com.cn
%
% 表达式
% x(n+1) = lambda * x(n) *