代码搜索:Matrices

找到约 3,616 项符合「Matrices」的源代码

代码结果 3,616
www.eeworm.com/read/192735/8289350

c confmat.c

/*************************************************************************/ /* */ /* Routine for printing confusion matrices */ /* --------------------------------------- */
www.eeworm.com/read/292968/8319875

hxx diagmtrx.hxx

// ***************************** // *** CLASS DIAGONAL MATRIX *** // ***************************** #include "flotmtrx.hxx" #include "debug.def" class DiagonalMatrix : public FloatM
www.eeworm.com/read/292968/8319986

hxx polymtrx.hxx

// ******************************* // *** CLASS POLYNOMIAL MATRIX *** // ******************************* #include "matrix.hxx" #include "debug.def" class Polynomial ; class FloatMatrix
www.eeworm.com/read/367442/9747793

m acov.m

function [sigma]=acov(SIGMA,inx) % ACOV returns covariance matrix of given index. % [sigma]=acov(SIGMA,inx) % % This function returns inx-th covarinace matrix. % The matrix SIGMA contains a serie of
www.eeworm.com/read/335635/12510496

m simbjac.m

% function s = simbjac(a,b) % % DESCRIPTION % computes Jaccard similarity between row objects in matrices a and b % % Copyright (c) 1998-2002 by Alexander Strehl function s = simbjac(a,b) if ~exis
www.eeworm.com/read/238296/13897305

c confmat.c

/*************************************************************************/ /* */ /* Routine for printing confusion matrices */ /* --------------------------------------- */ /*
www.eeworm.com/read/205036/15328852

m khatrirao.m

function P = khatrirao(varargin) %KHATRIRAO Khatri-Rao product of matrices. % % KHATRIRAO(A,B) computes the Khatri-Rao product of matrices A and % B that have the same number of columns. The resu
www.eeworm.com/read/202680/15375878

m golub.m

function A = golub(n) %GOLUB Badly conditioned integer test matrices. % GOLUB(n) is the product of two random integer n-by-n matrices, % one of them unit lower triangular and one unit upper trian
www.eeworm.com/read/201477/15407295

cpp rmult.cpp

// dynamic programming recursive matrix multiplication chains #include #include "make2db.h" int r[7] = {0, 10, 5, 1, 10, 2, 10}; int **kay; int C(int i, int j) {// Return c(
www.eeworm.com/read/200429/15433525

m size.m

function [varargout] = size(ipd) % IPDOUBLE/SIZE Size of array % % [m,n] = size(ipd) Juse like SIZE for matrices and vectors. % % Example: % ipd = ipdouble(ones(10,3)); % size(ipd) var