代码搜索:MATLAB LMD
找到约 10,000 项符合「MATLAB LMD」的源代码
代码结果 10,000
www.eeworm.com/read/456354/7351359
m ip_04_04.m
% MATLAB script for Illustrative Problem 4, Chapter 4.
echo on ;
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);
echo off ;
end
www.eeworm.com/read/456209/7353810
svn-base std.sci.svn-base
function y = std(x,a)
// std - for matlab compatibility
if argn(2)==1
y = stdev(x);
else
y = stdev(x,a);
end
endfunction
www.eeworm.com/read/456209/7353847
sci std.sci
function y = std(x,a)
// std - for matlab compatibility
if argn(2)==1
y = stdev(x);
else
y = stdev(x,a);
end
endfunction
www.eeworm.com/read/453233/7424529
m test4.m
for i=1:4 %设置信号前4 个点的数值
x(i)=5-i; %注意:MATLAB 中数组下标从1 开始
end
for i=5:8 %设置信号后4 个点的数值
x(i)=i-4;
end
close all; subplot(2,1,1); stem(x); %绘制信号图形
subplot(2,1,2); stem(abs(fft(x,16))) %绘制信号的频谱
www.eeworm.com/read/452284/7442663
m hgls2.m
function h = hgls2(L,x,wp)
% HGLS2
% MATLAB m-file for fractional delay approximation
% using the GENERAL LEAST SQUARES method
% Format: h = hgls2(L,x,wp)
% Input: L = filter length (filter order
www.eeworm.com/read/452284/7442665
m inihip2.m
function Hip=inihip2(L,Q,wp);
% INIHIP2
% MATLAB m-file for fractional delay approximation
% Initialisation for upsampling interpolation design
%
% First version: 28.12.1992 / Timo Laakso
% This
www.eeworm.com/read/452217/7445361
m fil.m
function [out]=fil(in,f);
%
% Filters the data using a first order filter
%
% [out]=fil(in,f);
%
% f is a vector containing the filter constants
%
% Updated to use MATLAB's built in filter rou