代码搜索:Matlab仿真
找到约 10,000 项符合「Matlab仿真」的源代码
代码结果 10,000
www.eeworm.com/read/382086/9050040
c sin1500matl.c
//Sin1500MATL.c Generates sine from table created with MATLAB
#include "sin1500.h" //sin(1500) created with MATLAB
short i=0;
interrupt void c_int11()
{
output_sample(sin1500[i]); //o
www.eeworm.com/read/184939/9064260
m daubcomp.m
% 应用小波压缩和滤波.
% 应用小波工具箱分解信号.压缩分解信号然后又重构.该程序使用了两个关键的MATLAB命令wavedec和waverec分别用于分解和重构.
% 本程序可使用不同的小波基.此处使用了Daubechies的仅4个系数的小波(表示为db2小波).也可使用更高级数的Daubechies小波(表示为dbn,这里的n是从1到50的整数,n=1即Haar小波).
% 程序的输入 ...
www.eeworm.com/read/282428/9094383
c sin1500matl.c
//Sin1500MATL.c Generates sine from table created with MATLAB
#include "sin1500.h" //sin(1500) created with MATLAB
short i=0;
interrupt void c_int11()
{
output_sample(sin1500[i]); //o
www.eeworm.com/read/381363/9096032
hlp export.hlp
Export
The Export item of the File menu allows the user to write image
files with formats other than Nanoscope III. The current choices are:
TIFF - the Tagged Image File Format
GIF - the Gra
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);