代码搜索:Matrices
找到约 3,616 项符合「Matrices」的源代码
代码结果 3,616
www.eeworm.com/read/152250/12130946
m stoch.m
function p=stoch(p)
% Row-normalize matrices, making sure rows are positive and sum to 1
if ndims(p)>2, error('Can only normalize matrices and vectors'); end;
p=abs(p);
[r,c]=size(p);
if min(r,c)>1,
www.eeworm.com/read/151609/12187783
c confmat.c
/*************************************************************************/
/* */
/* Routine for printing confusion matrices */
/* --------------------------------------- */
/*
www.eeworm.com/read/151555/12201485
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 tr
www.eeworm.com/read/150238/12302609
m disteu.m
function d = disteu(x, y)
% DISTEU Pairwise Euclidean distances between columns of two matrices
%
% Input:
% x, y: Two matrices whose each column is an a vector data.
%
% Output:
% d:
www.eeworm.com/read/251837/12316827
m uplus.m
function r = uplus(a)
%UPLUS (interval) overloades uplus for interval matrices, +a.
%
%b4m - datatype interval Version 1.02 (c) 26.2.1998 Jens Zemke
%
% DESCRIPTION:
% 'uplus' is c
www.eeworm.com/read/132141/14106933
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/130043/14210210
c confmat.c
/*************************************************************************/
/* */
/* Routine for printing confusion matrices */
/* --------------------------------------- */
/*
www.eeworm.com/read/128468/14295346
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/229154/14351101
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/126718/14405927
c confmat.c
/*************************************************************************/
/* */
/* Routine for printing confusion matrices */
/* --------------------------------------- */
/*