代码搜索:matlab RFID

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

代码结果 10,000
www.eeworm.com/read/464109/7169540

txt readme.txt

This CD-ROM contains the MATLAB and SIMULINK files for the exercises in Chapter 2 and for almost all the projects in Chapter 3 to 10 of the book: DYNAMIC SIMULATION OF ELECTRIC MACHINERY by Che
www.eeworm.com/read/463937/7172572

m zhihoujiaozheng.m

function varargout = zhihoujiaozheng(varargin) % ZHIHOUJIAOZHENG M-file for zhihoujiaozheng.fig % ZHIHOUJIAOZHENG, by itself, creates a new ZHIHOUJIAOZHENG or raises the existing % single
www.eeworm.com/read/463748/7175969

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/463748/7176035

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
www.eeworm.com/read/463564/7178218

m samp2_8.m

%Samp2_8 x=-10:0.1:10; %给出自变量序列值 y=sin(pi*x+eps)./(pi*x+eps); %给出sinc函数的离散序列值,eps是MATLAB系统的精度,这里防止被零除 plot(x,y) %绘图 xlabel('t') ylabel('sinc(t)')
www.eeworm.com/read/463378/7182708

m bppfault.m

% 在MATLAB6.5下编程 tic, % 开始计时 [P,T,R,S1,S2,S]=nninit; % BP网络初始化 % 生成BP网络 net = newff(minmax(P),[S1 S2],{'logsig' 'logsig'},'trainlm'); % BP网络训练的参数设置 net.trainParam.epochs = 3000; net.trainParam.g
www.eeworm.com/read/462042/7211818

txt 代码7-1.txt

clear all; % 清空内存 close all; % 关闭窗口 clc; % 英文Clear Command Window的缩写,清空命令窗口 % 上面的命令是回收MATLAB占用的系统资源,为后面的程序提供准备。 x=-10:0.1:10; y=x; [X,Y]=meshgrid(
www.eeworm.com/read/462042/7211827

txt 代码17-8.txt

function intrec(Z) %INTREC 实现数学形态学字符识别 A= imread ('zero.bmp');%将0字符图像读入到MATLAB中 B= imread ('one.bmp'); %将1字符图像读入到MATLAB中 C= imread ('two.bmp'); %将2字符图像读入到MATLAB中 D= imread ('three.bmp'); %将3字符
www.eeworm.com/read/462042/7211853

txt 代码27-18.txt

function foo(x,y) % MATLAB的没有foo.m文件,只是打个比方举个例子 if nargin ~= 2 % 请根据自己的程序进行调试 error('Wrong number of input arguments') end
www.eeworm.com/read/461983/7213382

asv program2_1.asv

%MATLAB Program2_1a %系统的状态转移矩阵 syms s t A=[-23/3 -22/3 -2/3;1 0 0;0 1 0]; FS=inv(s*eye(3)-A); eAt=ilaplace(FS,s,t); eAt=simplify(eAt) %系统阶跃响应解析解 S=dsolve('Dv=-7.*v-(22/3)*w-(2/3)*z+1,Dw=v,