代码搜索:Matlab仿真
找到约 10,000 项符合「Matlab仿真」的源代码
代码结果 10,000
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
www.eeworm.com/read/206731/7457150
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
www.eeworm.com/read/451487/7462869
m finish.m
button = questdlg('Ready to quit?', ...
'Exit Dialog','Yes','No','No');
switch button
case 'Yes',
disp('Exiting MATLAB');
%Save variables to matlab.mat
save