代码搜索:MATLAB LMD
找到约 10,000 项符合「MATLAB LMD」的源代码
代码结果 10,000
www.eeworm.com/read/382340/9035006
m q511.m
%《MATLAB在电子信息课程中的应用》第五章例5.11程序q511
% 有受控源的交流电路:戴维南定理
% 电子工业出版社出版 陈怀琛 吴大正 高西全合著 2001年10月
clear, format compact
R1=4;R2=2;R3=2; % 设定元件参数
Xl1=10;Xl2=8;XM=4;Xc=8;
Us=10;Is=10; % 设定信号源参数
Y1
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
% 应用小波压缩和滤波.
% 应用小波工具箱分解信号.压缩分解信号然后又重构.该程序使用了两个关键的<mark>MATLAB</mark>命令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