代码搜索:MATLAB LMD
找到约 10,000 项符合「MATLAB LMD」的源代码
代码结果 10,000
www.eeworm.com/read/251837/12316940
c bias_inf.c
/**********************************************************************
* bias_inf - inf with appropiate use of i/o MATLAB - BIAS - MATLAB
* -- interval -- PROFIL/BIAS storage (ultimate fast v
www.eeworm.com/read/251837/12316964
c bias_abs.c
/**********************************************************************
* bias_abs - abs with appropiate use of i/o MATLAB - BIAS - MATLAB
* -- interval -- PROFIL/BIAS storage (ultimate fast v
www.eeworm.com/read/251837/12316999
c bias_mid.c
/**********************************************************************
* bias_mid - mid with appropiate use of i/o MATLAB - BIAS - MATLAB
* -- interval -- PROFIL/BIAS storage (ultimate fast v
www.eeworm.com/read/251837/12317053
c bias_sup.c
/**********************************************************************
* bias_sup - sup with appropiate use of i/o MATLAB - BIAS - MATLAB
* -- interval -- PROFIL/BIAS storage (ultimate fast v
www.eeworm.com/read/251632/12329759
txt matlab7.0利用mcc与vc++编程实例.txt
Matlab7.0利用mcc与VC++编程实例
Posted on 2006-10-26 23:09 yunbo 阅读(637) 评论(2) 编辑 收藏 所属分类: Matlab与VC编程
1、启动MATLAB7,新建m文件,输入:
function myfun(n)
t=0:n;
y=sin(t);
plot(y);
保存文件为:myfun.m
2、在Matla
www.eeworm.com/read/337630/12353883
dat bookinfo.dat
[General Information]
书名=MATLAB与通信仿真
作者=王立宇 乐光新 詹菲
页数=439
SS号=10475873
出版日期=2000年01月第1版
www.eeworm.com/read/149609/12362734
m mexeval.m
%MEXEVAL Execute string containing MATLAB expression.
% MEXEVAL(s), where s is a string, causes MATLAB to execute
% the string as an expression or statement.
%
% MEXEVAL(s1,s2) provides the
www.eeworm.com/read/251140/12362824
txt bbs.eetzone.com.txt
------------------ 电子工程论坛 ----------------------
http://bbs.eetzone.com
好多技术资料,参考设计,源代码共享!!!
www.eeworm.com/read/251128/12362999
m p0302.m
I=imread('cameraman.tif'); % MATLAB自带的图像,如图3-3所示
imshow(I);
clear;close all
I=imread('cameraman.tif');
imshow(I);
I=im2double(I);
T=dctmtx(8);
B=blkproc(I,[8 8], 'P1*x*P2',T,T');
Ma
www.eeworm.com/read/251128/12363010
m p0304.m
I=imread('hhh.jpg'); % 读取MATLAB自带的potu.tif图像
imshow(I);
figure,imhist(I);
[J,T]=histeq(I,64); % 图像灰度扩展到0~255,但是只有64个灰度级
figure,imshow(J);
figure,imhist(J);
figure,plot((0:255)/255,T);