代码搜索:MATLAB
找到约 10,000 项符合「MATLAB」的源代码
代码结果 10,000
www.eeworm.com/read/381319/9097995
m exa090702.m
% -------------------------------------------------------------------
% exa090702.m, for example 9.7.2 and fig 9.7.2
% 连续小波变换。noissin 是MATLAB中带噪声的正弦信号。
% 本程序给出的是连续小波变换的灰度图表示。
%--------------------
www.eeworm.com/read/381211/9103804
txt 1_readme.txt
1_README.TXT (EXAMPLES FOLDER)
Greetings:
This folder contains the Matlab files that create
figures for the examples in the text.
www.eeworm.com/read/381211/9104061
m filters.m
function y=filters(b,a,x)
% y=filters(b,a,x)
%
% Same as Matlab "filter" function except b and a both have
% N rows, representing N filter sections in cascade.
%
% If N=1, the filter has only o
www.eeworm.com/read/184267/9114088
m ip_04_04.m
% MATLAB script for Illustrative Problem 4, Chapter 4.
a=[-10,-5,-4,-2,0,1,3,5,10];
for i=1:length(a)-1
y(i)=centroid('normal',a(i),a(i+1),0.001,0,1);
end
www.eeworm.com/read/184267/9114123
m ip_01_01.m
% MATLAB script for Illustrative Problem 1, Chapter 1.
n=[-20:1:20];
x=abs(sinc(n/2));
stem(n,x);
www.eeworm.com/read/184067/9123803
m rand.m
%R=rand(m,n) 生成(0,1)上均匀分布的m行n列随机矩阵
%RAND Uniformly distributed random numbers.
% RAND(N) is an N-by-N matrix with random entries, chosen from
% a uniform distribution on the interval (0.0,1.0
www.eeworm.com/read/281447/9155244
m resetr.m
function [] = resetr(seed);
if nargin==0
seed = 0
end
% resets the state of the random number generator matlab 5 style
randn('state',seed);
rand('state',seed);
www.eeworm.com/read/380070/9166748
m exa090702.m
% -------------------------------------------------------------------
% exa090702.m, for example 9.7.2 and fig 9.7.2
% 连续小波变换。noissin 是MATLAB中带噪声的正弦信号。
% 本程序给出的是连续小波变换的灰度图表示。
%--------------------