代码搜索:matlab RFID
找到约 10,000 项符合「matlab RFID」的源代码
代码结果 10,000
www.eeworm.com/read/467324/7009709
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/467324/7009834
m ip_07_09.m
% MATLAB script for Illustrative Problem 9, Chapter 7
echo on
num=[0.01 1];
den=[1 1.01 1];
[a,b,c,d]=tf2ss(num,den);
dt=0.01;
u=ones(1,2000);
x=zeros(2,2001);
for i=1:2000
x(:,i+1)=x(:,i)+
www.eeworm.com/read/467198/7020040
m contents.m
% Soft Computing Toolbox
% Version 1.0, July 18, 1996 (For MATLAB 4.2)
% Version 2.0, Feb. 10, 1999 (For MATLAB 5.2)
% Copyright (c) 1996 by J.-S. R. Jang, C.-T. Sun, and E. Mizutani
%
% For use with
www.eeworm.com/read/466518/7026218
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,
www.eeworm.com/read/466623/7030198
dat bookinfo.dat
[General Information]
书名=基于MATLAB/Simulink的系统仿真技术与应用
作者=
页数=434
SS号=0
出版日期=
www.eeworm.com/read/465758/7045139
txt 6.txt
function D = dijkstra( G , S )
% --------------------------------------------------------------------
% Mark Steyvers, Stanford University, 12/19/00
% -----------------------------------------
www.eeworm.com/read/465867/7047680
m ex602.m
%********************************************************
%程序:EX602.M
%功能:灰度图像显示及颜色映射表说明
%********************************************************
I=imread('noon.tif'); %将图像格式文件读入为MATLAB图像对象数组
www.eeworm.com/read/465867/7047681
m ex611.m
%*******************************************************
%程序:EX611.M
%功能:把一幅灰度图像转换成一幅索引图像
%********************************************************
I=imread('noon.tif'); %将图像格式文件读入为MATLAB图
www.eeworm.com/read/465867/7047684
m ex617.m
%********************************************************
%程序:EX617.M
%功能:多帧图像阵列显示应用实例
%********************************************************
A1=imread('rice.jpg'); %将图像格式文件读入为MATLAB图像对象数组数据
www.eeworm.com/read/465867/7047685
m ex620.m
%********************************************************
%程序:EX620.M
%功能:利用warp函数将一幅真彩图像映射到球面上
%********************************************************
RGB=imread('leaf.jpg'); %将图像格式文件读入为MAT