代码搜索:same
找到约 10,000 项符合「same」的源代码
代码结果 10,000
www.eeworm.com/read/493294/6399898
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/493294/6399980
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/487286/6518688
java comparereference.java
package Operator;
import java.awt.Button;
/*
A reference variable is a name that is used in Java to reference
an instance of a class. Reference variables can be tested to see
if they point
www.eeworm.com/read/483253/6601798
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
www.eeworm.com/read/480149/6677719
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
www.eeworm.com/read/480149/6677740
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
www.eeworm.com/read/409142/11344977
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
www.eeworm.com/read/400577/11572601
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/400577/11572668
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/400577/11573154
m datafile.m
%DATAFILE Datafile class constructor. This is an extension of DATASET.
%
% A = DATAFILE(DIRECTORY,TYPE,READCMD,P1,P2,P3, ...)
% A = DATAFILE(DIRECTORY,READCMD,P1,P2,P3, ...)
%
% INPUT
% DIRECT