代码搜索:MATLaB
找到约 10,000 项符合「MATLaB」的源代码
代码结果 10,000
www.eeworm.com/read/480529/6665821
txt 10-27.txt
%例10-27 本例调用一个函数plotfhandle,传递一个MATLAB 7.1内置的sin函数给该函数,然后,由plotfhandle调用plot函数,将数据和sin的函数句柄传递给它。 plot 函数调用与该句柄相关的函数来绘制曲线。
function x = plotFHandle(fhandle, data)
plot(data, fhandle(data))
%在命令窗口中调
www.eeworm.com/read/480529/6665827
txt 10-35.txt
%例10-35 <mark>MATLAB</mark>中显示当前日期和时间。
%ATLAB 7.1中输入上述时间函数,并按Enter键确认。
>> T=clock
>>
%以上是以向量形式表示的本书这一部分编写时所处的时间,即2004年9月16号14时58分第9.2秒。
>>date
%以上是编写本身这一部分的日期。
>> now
%以上是以双精度数据表示的当前的日期和时间。
>>calen ...
www.eeworm.com/read/480529/6665858
txt 9-01.txt
%例9-1 本例将创建3个图形对象,并给图形对象、坐标轴对象和面图命令设置特定的值,MATLAB 7 将给其他的属性设置默认值。
>> [x,y] = meshgrid([-2:.4:2]);
>> Z = x.*exp(-x.^2-y.^2);
>> fh = figure('Position',[350 275 600 450],'Color','w');
>> ah = axes
www.eeworm.com/read/480211/6668265
svn-base readme.txt.svn-base
matbugs.m is a Matlab interface for WinBugs, similar to R2WinBUGS.
For details, see the web page
http://www.cs.ubc.ca/~murphyk/Software/MATBUGS/matbugs.html
www.eeworm.com/read/480211/6668277
svn-base script.txt.svn-base
display('log')
check('C:/kmurphy/matlab/BUGS/schools_model.txt')
data('C:/kmurphy/matlab/BUGS/tmp/data.txt')
compile(3)
inits (1, 'C:/kmurphy/matlab/BUGS/tmp/init_1.txt')
inits (2, 'C:/kmurphy/matla
www.eeworm.com/read/480211/6668299
txt script.txt
display('log')
check('C:/kmurphy/matlab/BUGS/schools_model.txt')
data('C:/kmurphy/matlab/BUGS/tmp/data.txt')
compile(3)
inits (1, 'C:/kmurphy/matlab/BUGS/tmp/init_1.txt')
inits (2, 'C:/kmurphy/matla
www.eeworm.com/read/480211/6668321
txt readme.txt
matbugs.m is a Matlab interface for WinBugs, similar to R2WinBUGS.
For details, see the web page
http://www.cs.ubc.ca/~murphyk/Software/MATBUGS/matbugs.html
www.eeworm.com/read/480213/6668332
m contents.m
% FastICA for Matlab 7.x and 6.x
% Version 2.5, October 19 2005
% Copyright (c) Hugo G鋠ert, Jarmo Hurri, Jaakko S鋜el
www.eeworm.com/read/480288/6671894
asv hc432.asv
%《数字信号处理教程——MATLAB释义与实现》第四章例4.3.2程序hc432
% 用FFT计算离散时间傅立叶变换DTFT
% 电子工业出版社出版 陈怀琛编著 2004年9月
%
C=[20,1024];T=0.5; % 设定两种补零后长度
for i=[1,2]
N=C(i);D=2*pi/(N*T); % 根据N值确定频率
www.eeworm.com/read/480288/6671895
m hc236.m
%《数字信号处理教程——MATLAB释义与实现》第二章例2.3.6程序hc236
% 信号序列的周期延拓
% 电子工业出版社出版 陈怀琛编著 2004年9月
%
x = [3, 5, -7, 2, -1, -3, 2]; nx=[-3:3]; % 给定信号x(n)
[y,ny] = seqshift(x,nx,2); % 得到迟延信号 x(n-2