代码搜索:same

找到约 10,000 项符合「same」的源代码

代码结果 10,000
www.eeworm.com/read/143419/12878138

m 8.m

11.3.2 由M文件创建外部应用程序的入门算例 【例11.3.2-1】建立一个脱离MATLAB环境,可独立运行的外部程序。该程序的功能是:对于给定矩阵A,如果存在S使得S-1AS=Λ,则要求出一个S,否则给出信息说明所给的矩阵A不能对角化。 (1) [exm2.m] function exm2 A=[4,0,0;0,3,1;0,1,3]; S=exm2_f(A) [exm2_f
www.eeworm.com/read/137160/13341822

m iscomdset.m

%ISCOMDSET Test whether datasets are compatible % % N = ISCOMDSET(A,B,CLAS); % % INPUT % A Input argument, to be tested on dataset % B Input argument, to be tested on compatibility wi
www.eeworm.com/read/137160/13341917

m prodc.m

%PRODC Product combining classifier % % W = PRODC(V) % W = V*PRODC % % INPUT % V Set of classifiers trained on the same classes % % OUTPUT % W Product combiner % % DESCRIPTION % It def
www.eeworm.com/read/136696/13365609

m f_union.m

function [dA1dA2] = f_union(dA1,dA2) %UNION: The union of matrix of fuzzy values A and B over the same % universe will be calculated. % % [A1&A2] = UNION(A1,A2)
www.eeworm.com/read/319871/13440834

m exm2_f.m

function S=exm2_f(A) %exm2_f.m [m,n]=size(A); if m~=n error('输入矩阵应是方阵!'); end; e=eig(A); %检查输入矩阵的特征值是否各异 same=0; for i=1:m-1 for j=(i+1):m if e(j)==e(i) same=1; e
www.eeworm.com/read/319335/13453894

m exm2_f.m

function S=exm2_f(A) [m,n]=size(A); if m~=n error('输入矩阵应是方阵!'); end; e=eig(A); %检查输入矩阵的特征值是否各异 same=0; for i=1:m-1 for j=(i+1):m if e(j)==e(i) same=1; end end
www.eeworm.com/read/315951/13533967

c print.c

/*********************Thermal Printer FTP-628MCL701******************************/ /*********************Program Designed by ChuFangqun*****************************/ //Check the swich ON or oFF #
www.eeworm.com/read/314653/13562216

m iscomdset.m

%ISCOMDSET Test whether datasets are compatible % % N = ISCOMDSET(A,B,CLAS); % % INPUT % A Input argument, to be tested on dataset % B Input argument, to be tested on compatibility wi
www.eeworm.com/read/314653/13562263

m prodc.m

%PRODC Product combining classifier % % W = PRODC(V) % W = V*PRODC % % INPUT % V Set of classifiers trained on the same classes % % OUTPUT % W Product combiner % % DESCRIPTION % It def
www.eeworm.com/read/304082/13801560

m distchpf.m

function d=distchpf(pf1,pf2,mode) %DISTCHPF calculates the cosh spectral distance between power spectra D=(PF1,PF2,MODE) % % Inputs: PF1,PF2 Power spectra to be compared. Each row represents a