代码搜索:matlab RFID
找到约 10,000 项符合「matlab RFID」的源代码
代码结果 10,000
www.eeworm.com/read/359802/10124257
vhd dds_top.vhd
--------------------------------------------------------------------------------------------
--
-- DSP Builder (Version 7.0, Build 33)
-- Quartus II development tool and MATLAB/Simulink Interface
www.eeworm.com/read/359802/10124260
vhd dds.vhd
--------------------------------------------------------------------------------------------
--
-- DSP Builder (Version 7.0, Build 33)
-- Quartus II development tool and MATLAB/Simulink Interface
www.eeworm.com/read/359802/10124410
vhd tb_dds_top.vhd
--------------------------------------------------------------------------------------------
--
-- DSP Builder (Version 7.0, Build 33)
-- Quartus II development tool and MATLAB/Simulink Interface
www.eeworm.com/read/359802/10124411
v tb_dds_top.v
//////////////////////////////////////////////////////////////////////////////////////////////
//
// DSP Builder (Version 7.0)
// Quartus II development tool and MATLAB/Simulink Interface
//
//
www.eeworm.com/read/359802/10124429
tcl tb_dds_top.tcl
puts "############################################################################################"
puts "# "
puts "# DSP Builder (Version 7.0)"
puts "# Quartus II development tool and MATLAB/Simul
www.eeworm.com/read/359802/10124655
vec dds_top.vec
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% %
% DSP Builder (Versi
www.eeworm.com/read/359724/10127755
m amp111.m
%Matlab Program 1-11
%Create system model 1
Mod1=ss(-1,1,1,0,'InputDelay',0.1);
%Create system model 2
Mod2=ss(-1,1,1,0,'OutputDelay',0.1);
www.eeworm.com/read/359724/10127756
m amp114.m
%Matlab Program 1-14
G=tf([2 5 1],[1 2 3],'inputN','Torque','outputN','Velocity');
H=zpk([0 -2],-10,1);
sysc=feedback(G,H)
www.eeworm.com/read/359724/10127761
m amp208.m
%Matlab Program 2-8
%Create system model
sys=tf([1 -1],[1 1 5]);
%Create input signal
[u,t]=gensig('square',4,10,0.1);
plot(t,u);
%Sysem response
hold on
lsim(sys,u,t);
hold off
grid
www.eeworm.com/read/359724/10127770
m amp201.m
%Matlab Program 2-2
tspan=[0 15];
y0=[0 1 1];
[T,Y]=ode45('rigid',tspan,y0);
plot(T,Y(:,1),'r',T,Y(:,2),'b*',T,Y(:,3),'m--')
grid