代码搜索:matlab RFID
找到约 10,000 项符合「matlab RFID」的源代码
代码结果 10,000
www.eeworm.com/read/304351/13795784
m exn47a.m
%《MATLAB及其在理工课程中的应用指南》(十一五规划版)第四章第七节演示程序a
% 符号运算函数库演示程序
% 西安电子科技大学出版社出版 陈怀琛编著 2007年5月
%
echo on
disp('用符号工具箱表示及推导普通公式')
syms x y t a u v w q,pause
r = x^2 + y^2,pause
theta = atan(y/x) ,pause
www.eeworm.com/read/304351/13795787
m exn516.m
%《MATLAB及其在理工课程中的应用指南》(十一五规划版)第五章例5-1-6程序
% 画出函数图形并求极限
% 西安电子科技大学出版社出版 陈怀琛编著 2007年5月
clear,clf
subplot(1,2,1),ezplot('x.*sin(1./x)'),
subplot(1,2,2),ezplot('sin(1./x)'),
pause,figure(2)
x1=
www.eeworm.com/read/304351/13795788
m exn558a.m
%《MATLAB及其在理工课程中的应用指南》(十一五规划版)第五章例5-5-8程序a
% 对称实矩阵的特征值和特征向量
% 西安电子科技大学出版社出版 陈怀琛编著 2007年7月
%
clear,clf,format compact
A=[2,4,9;4,2,4;9,4,18], % 输入矩阵参数
f=poly(A) % 求其特征多项式的系数向量f
r=roots(f)
www.eeworm.com/read/304351/13795801
m exn624.m
%《MATLAB及其在理工课程中的应用指南》(十一五规划版)第六章例6-2-4程序
% 完全弹性碰撞问题
% 西安电子科技大学出版社出版 陈怀琛编著 2007年5月
%
clear
K=logspace(-1,1,11); % 把K设成自变量数组,从K=0.1到K=10按等比取11个点
for i=1:length(K) % 对各个K循环计算
ur1=roots([(1
www.eeworm.com/read/304064/13801858
dat bookinfo.dat
[General Information]
书名=先进PID控制及其MATLAB仿真
作者=
页数=300
SS号=0
出版日期=
Vss号=76948911
www.eeworm.com/read/303955/13806084
txt 说明.txt
在matlab中运行
>>[jd,mjd]=ut_jd(year,moon,day)
jd为儒略日,mjd是约化儒略日
www.eeworm.com/read/303772/13809458
install
--------- Running the toolbox --------------------
In Matlab or Octave type "ltfatstart" as the first command from the
installation directory. This will set up the correct paths. In Octave
you can p
www.eeworm.com/read/303645/13810764
m main_logistic.m
% Logistic 映射
% 使用平台 - Matlab7.0
% 作者:陆振波,海军工程大学
% 欢迎同行来信交流与合作,更多文章与程序下载请访问我的个人主页
% 电子邮件:luzhenbo@yahoo.com.cn
% 个人主页:http://luzhenbo.88uu.com.cn
clc
clear all
close all
%------------
www.eeworm.com/read/303558/13812567
m ip_02_05.m
% MATLAB script for Illustrative Problem 5, Chapter 2.
clear
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)
www.eeworm.com/read/303558/13812678
m ip_05_07.m
% MATLAB script for Illustrated Problem 5.7.
clear
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',x