代码搜索:matlab RFID
找到约 10,000 项符合「matlab RFID」的源代码
代码结果 10,000
www.eeworm.com/read/371255/9559151
html othersites.html
Other highly recommended Computer Vision software sites
www.eeworm.com/read/370825/9582572
h congrad.h
/* mex header file for matlab interaction */
#include "/software/matlab6/extern/include/mex.h"
#define ERRORMSG(T) mexErrMsgTxt(T)
#define MALLOC(X) mxMalloc(X)
#define FREE(X) mxFree(X)
#define GE
www.eeworm.com/read/170335/9809556
txt readme.txt
在matlab中,设置当前的目录为工作目录,在命令行中输入fpextractdemo,即可运行程序。
www.eeworm.com/read/366486/9811965
m 3-3.m
h=figure;
f = uimenu(h,'Label','MATLAB工作间');
uimenu(f,'Label','新窗口','Callback','figure');
uimenu(f,'Label','保存','Callback','save');
h1=uimenu(f,'Label','清除');
uimenu(h1,'Label','清楚变量','callback',
www.eeworm.com/read/170249/9813350
m pmntanh.m
function t=pmntanh(x)
% PMNTANH
% -------
% Fast hyperbolic tangent function to be used in
% neural networks instead of the tanh provided by MATLAB
t=1-2./(exp(2*x)+1);