代码搜索:matlab RFID
找到约 10,000 项符合「matlab RFID」的源代码
代码结果 10,000
www.eeworm.com/read/461983/7213387
m program2_2c_2.m
%MATLAB Program2_2c_2
A=[0 1 0;0 0 1;-2 -4 -3];
B=[1 0;0 1;-1 1];
C=[0 1 -1;1 2 1];
D=[0 0; 0 0];
t=0:0.01:16;
[YY1,XX1]=step(A,B,C,D,1,t);
[YY2,XX2]=step(A,B,C,D,2,t);
y1=YY1(:,1)+YY2(:,1);
www.eeworm.com/read/461983/7213392
asv program2_2c_2.asv
%MATLAB Program2_2c_2
A=[0 1 0;0 0 1;-2 -4 -3];
B=[1 0;0 1;-1 1];
C=[0 1 -1;1 2 1];
D=[0 0; 0 0];
T=0:0.01:4;
[YY1,XX1]=step(A,B,C,D,1,t);
[YY2,XX2]=step(A,B,C,D.2,t);
y1=YY1(:,1)+YY2(:,1);
y
www.eeworm.com/read/461983/7213393
asv program3_4.asv
%MATLAB Program3_4
%
A=[4 1 0 0;0 4 1 0;0 0 4 1;0 0 0 4];
B=[0 0;1 2;0 0;2 1];
C=[1 0 2 0;2 0 4 2];
D=[0 0;0 0];
Qc=ctrb(A,B);
n=rank(Qc);
L=length(A);
if n ==L
str='系统是状态完全能控的'
else
www.eeworm.com/read/461983/7213394
m program3_4.m
%MATLAB Program3_4
A=[4 1 0 0;0 4 1 0;0 0 4 1;0 0 0 4];
B=[0 0;1 2;0 0;2 1];
C=[1 0 2 0;2 0 4 2];
%判断系统的能控性
Qc=ctrb(A,B);
n=rank(Qc);
L=length(A);
if n ==L
str='系统是状态完全能控的'
else
www.eeworm.com/read/461039/7235545
m pathdef.m
function p = pathdef
%PATHDEF Search path defaults.
% PATHDEF returns a string that can be used as input to MATLABPATH
% in order to set the path.
% Copyright 1984-2000 The MathWorks,