代码搜索:matlab RFID
找到约 10,000 项符合「matlab RFID」的源代码
代码结果 10,000
www.eeworm.com/read/331439/12828906
m repmat.m
function b = repmat(a, m, n)
% REPMAT Replicate and tile an array.
% (Quaternion overloading of standard Matlab function.)
% Copyright
www.eeworm.com/read/331439/12828910
m size.m
function [r, c] = size(q, dim)
% SIZE Size of matrix.
% (Quaternion overloading of standard Matlab function.)
% Copyright
www.eeworm.com/read/331439/12828962
m cosh.m
function Y = cosh(X)
% COSH Hyperbolic cosine.
% (Quaternion overloading of standard Matlab function.)
% Copyright
www.eeworm.com/read/331439/12828965
m char.m
function str = char(q)
% CHAR Create character array (string).
% (Quaternion overloading of standard Matlab function.)
% Note: the Matlab char function converts arrays of numeric values into
% charac
www.eeworm.com/read/331439/12828966
m tril.m
function d = tril(v, k)
% TRIL Extract lower triangular part.
% (Quaternion overloading of standard Matlab function.)
% Copyright
www.eeworm.com/read/331439/12828980
m fix.m
function a = fix(q)
% FIX Round towards zero.
% (Quaternion overloading of standard Matlab function.)
% Copyright
www.eeworm.com/read/331439/12828992
m isempty.m
function tf = isempty(q)
% ISEMPTY True for empty matrix.
% (Quaternion overloading of standard Matlab function.)
% Copyright
www.eeworm.com/read/331439/12828996
m acosh.m
function Y = acosh(X)
% ACOSH Inverse hyperbolic cosine.
% (Quaternion overloading of standard Matlab function.)
% Copyright
www.eeworm.com/read/244937/12830846
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/244937/12831178
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