代码搜索:matlab、人工免疫

找到约 10,000 项符合「matlab、人工免疫」的源代码

代码结果 10,000
www.eeworm.com/read/479225/6690318

m denoise1.m

function varargout = denoise1(varargin) if nargin == 0 % LAUNCH GUI fig = openfig(mfilename,'reuse'); % Use system color scheme for figure: set(fig,'Color',get(0,'defaultUicontrolBackgroun
www.eeworm.com/read/478563/6709952

m ea331.m

% 《工程线性代数(MATLAB版)》第三章例题3.3.1程序ea331 % syms k A=[-2-k,4,2;4,-2-k,-2;2,-2,1-k] det(A)
www.eeworm.com/read/478563/6709957

m ea441.m

% 《工程线性代数(MATLAB版)》第四章例题4.4.1程序ea441 % c=-2:0.1:2; x1=1-c;x2=1-2*c; plot(x1,x2),hold on % 画出通解 plot([0,1],[0,1]) % 画出特解 plot(x1-1,x2-1),grid on % 画出基础解 axis([-1.5,1.5,-3,3]) set(gcf
www.eeworm.com/read/478563/6709970

m ea703.m

% 《工程线性代数(MATLAB版)》第七章例题7.3程序ea703 % a=input('输入分母系数向量a=[a1,a2,...]=(书上取 [1,2,9,3] ) '); n=length(a)-1; disp('输入初始条件向量(长度应比a小一) Y0=[y0,Dy0,D2y0,...] ') Y0=input('Y0=(书上分别取[1,0,0],[0,1,0],[0,0,1]
www.eeworm.com/read/478563/6709983

m ea622.m

% 《工程线性代数(MATLAB版)》第六章例题6.2.2程序ea622 % A=[1,-1,2;0,2,1;0,0,-1] B=2*A^3+A-5*eye(3) C=inv(A)+eye(3) fa=poly(A),ra=roots(fa) fb=poly(B),rb=roots(fb) fc=poly(C),rc=roots(fc)
www.eeworm.com/read/478563/6709984

m ea401.m

% 《工程线性代数(MATLAB版)》第四章例题4.1程序ea401 % u=[2;4]; v=[3;-1]; w=[9;4]; plot([2,3],[4,-1],'x');hold on drawvec(u);hold on % drawvec是ATLAST中的子程序 drawvec(v,'g');hold on drawvec(w,'r'); hold off;grid o
www.eeworm.com/read/478563/6709986

m ea406.m

% 《工程线性代数(MATLAB版)》第四章例题4.6程序ea406 % clear x=[-1,1,0,-1;1,1,2,1;ones(1,4)] % 将平面坐标改为三维齐次坐标 plot(x(1,:),x(2,:)),hold on % 画出原始图形 axis([-2,4,0,6]),pause M=[1,0,2;0,1,3;0,0,1] % 齐次坐标系中的移位矩阵 t
www.eeworm.com/read/478563/6709992

m ea401a.m

% 《工程线性代数(MATLAB版)》第四章例题4.1程序ea401a % u=[2;4]; v=[3;-1]; u1=1.5*u; v1=2*v; w=u1+v1; plot([2,3],[4,-1],'x'); drawvec(u);hold on % drawvec是ATLAST中的子程序 drawvec(v,'g');hold on drawvec(u1,'b');hol
www.eeworm.com/read/478563/6709994

m eaa2.m

% 《工程线性代数(MATLAB版)》附录A第二节演示程序eaa2 % format,echo on pause,x1=sqrt(5),x2=1.37,y=3/x2 pause,a=[1,2,3;4,5,6;7,8,9] pause,x=[-1.3 sqrt(3) (1+2+3)/5*4] pause,x(5)=abs(x(1)) pause,a(4,3)=6.5 pause,a(
www.eeworm.com/read/478563/6709995

m ea562.m

% 《工程线性代数(MATLAB版)》第五章例题5.6.2程序ea562 % A=[1,1,1,1,1;3,2,1,1,-3;0,1,2,2,6;5,4,3,3,-1]; b=[7;-2;23;12]; % 系数矩阵赋值 U0=rref([A,b]) % 将增广矩阵化为最简行阶梯形式 [m,n]=size(A);x0=