代码搜索:Matlab仿真
找到约 10,000 项符合「Matlab仿真」的源代码
代码结果 10,000
www.eeworm.com/read/165360/10066338
m contents.m
% MATLAB Web Server
% Version 1.2.3 (R14SP1) 05-Sep-2004
% Copyright 1998-2004 The MathWorks, Inc.
%
% Release information.
% Readme - Display information about version 1.2.
%
www.eeworm.com/read/165119/10075746
txt simulate.txt
用遗传算法解决0-1背包问题的MATLAB程序
--------------------------------------------------------------------------------
下面是模拟退火算法的代码,使用模拟退火算法(SAA)解决0-1背包问题
clear;
w=[6 5 3 2 1 1]; %物品重量
c=[61 59 31 21
www.eeworm.com/read/164813/10086856
m p0312.m
I=imread('blood1.tif');
imshow(I);
f=double(I); % 数据类型转换,MATLAB不支持图像的无符号整型的计算
g=fft2(f); % 傅立叶变换
g=fftshift(g); % 转换数据矩阵
[M,N]=size(g);
nn=2; % 二阶巴特沃斯(Butterworth)高通滤波器
www.eeworm.com/read/164338/10116850
m q808.m
%《MATLAB在电子信息课程中的应用》第八章例8.8程序q808
% 零点对二阶连续系统和离散系统的脉冲响应的影响
% 电子工业出版社出版 陈怀琛 吴大正 高西全合著 2001年10月
clear,clf,
wn=1; zeta=0.4; % 设定参数wn, zeta
for Tp=[0.2,1,5] % 设定参数Tp
den=conv([Tp,1],[1,2*z
www.eeworm.com/read/164338/10116960
m q510.m
%《MATLAB在电子信息课程中的应用》第五章例5.10程序q510
% 有受控源的交流电路:戴维南定理
% 电子工业出版社出版 陈怀琛 吴大正 高西全合著 2001年10月
clear, format compact
Z1=-j*250;Z2=250;ki=0.5;Is=2; % 设定元件参数
a11=1/Z1+1/Z2;a12=-1/Z2;a13=0; % 设定系数矩阵A
www.eeworm.com/read/164338/10116975
m q813.m
%《MATLAB在电子信息课程中的应用》第八章例8.13程序q813
% 二阶连续和采样系统bode图
% 电子工业出版社出版 陈怀琛 吴大正 高西全合著 2001年10月
clear,wn=10;
for zeta=[0.1:0.3:1,]
[n,d]=ord2(wn,zeta);
s1=tf(n*wn^2,d); % 生成二阶连续系统
sd1=c2
www.eeworm.com/read/164338/10117034
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/164272/10120310
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/359810/10123943
m cfigure.m
% create a figure, with fixed size
% use it similar as figure function
function h=cfigure(k,width,height)
if nargin ==0,
k = 1;
end
if nargin