代码搜索:MATLAB
找到约 10,000 项符合「MATLAB」的源代码
代码结果 10,000
www.eeworm.com/read/411667/11234396
txt readme.txt
Kalman filter toolbox written by Kevin Murphy, 1998.
See http://www.ai.mit.edu/~murphyk/Software/kalman.html for details.
Installation
------------
1. Install KPMtools from http://www.ai.mit.edu/~mu
www.eeworm.com/read/266102/11240297
txt readme.txt
========================
System Requirements:
1) 1 MB of HD space available.
2) MATLAB version 5.3 (or higher) installed.
========================
Installation:
1) Create a new MATLAB to
www.eeworm.com/read/266102/11240330
m sn2sg.m
% MATLAB function sn2sg.m deals with mismatching
% effects at the Q terminals of a multi-port network.
% Function sn2sg.m needs as its inputs the
% normalizing impedance matrix Z0 (denoted Z0,
% d
www.eeworm.com/read/265723/11255251
m isprime.m
function isp = isprime(X)
%ISPRIME True for prime numbers.
% ISPRIME(X) is 1 for the elements of X that are prime, 0 otherwise.
%
% Class support for input X:
% float: double, single
%
www.eeworm.com/read/265723/11255253
m beta.m
function y = beta(z,w,v)
%BETA Beta function.
% Y = BETA(Z,W) computes the beta function for corresponding
% elements of Z and W. The beta function is defined as
%
% beta(z,w) = integral
www.eeworm.com/read/148257/12479749
m ag906.m
%《线性代数实验践及MATLAB入门》第九章例题程序ag906
% 不同坐标系的二次型曲线
% 电子工业出版社出版 陈怀琛 龚杰民合著 2005年10月
%
clear,
subplot(2,2,1)
ezplot('5*x1^2-4*x1*x2+5*x2^2=48')
axis equal,grid on
subplot(2,2,3)
ezplot('3*y1^2+7*y2^
www.eeworm.com/read/148257/12479758
m ag801.m
%《线性代数实验践及MATLAB入门》第八章例题程序ag801
% 平面上向量的绘制
% 电子工业出版社出版 陈怀琛 龚杰民合著 2005年10月
%
u=[2;4]; v=[3;-1];
plot([2,3],[4,-1],'x');hold on
drawvec(u);hold on % drawvec是ATLAST中的子程序
drawvec(v,'g');hold off
www.eeworm.com/read/148256/12480302
m q510.m
%《MATLAB及在电子信息课程中的应用》第五章例5.10程序q510
% 有受控源的交流电路:戴维南定理
% 电子工业出版社出版 陈怀琛 吴大正 高西全合著 2001年10月初版,2003年7月第二版
%
clear, format compact
Z1=-j*250;Z2=250;ki=0.5;Is=2; % 设定元件参数
a11=1/Z1+1/Z2;a12=-1/Z2;a13=
www.eeworm.com/read/148256/12480390
m q809.m
%《MATLAB及在电子信息课程中的应用》第八章例8.9程序q809
% 连续和离散系统的多种输出响应曲线
% 电子工业出版社出版 陈怀琛 吴大正 高西全合著 2001年10月初版,2003年7月第二版
%
clear,clf
[a,b,c,d]=rmodel(4);
s1=ss(a,b,c,d);Ts=0.2;
sd1=c2d(s1,Ts,'t')
t=0:Ts:25;
u=
www.eeworm.com/read/148256/12480441
m q511.m
%《MATLAB及在电子信息课程中的应用》第五章例5.11程序q511
% 有受控源的交流电路:戴维南定理
% 电子工业出版社出版 陈怀琛 吴大正 高西全合著 2001年10月初版,2003年7月第二版
%
clear, format compact
R1=4;R2=2;R3=2; % 设定元件参数
Xl1=10;Xl2=8;XM=4;Xc=8;
Us=10;Is=10;