代码搜索:Matrices
找到约 3,616 项符合「Matrices」的源代码
代码结果 3,616
www.eeworm.com/read/296909/8073088
m mpower.m
function r = mpower(x,y)
% MONOMIAL/MPOWER Implement '^' for a monomial.
%
if( ~isnumeric(y) )
error('The exponent in the power must be a numerical value.');
end
if( length(x) > 1 )
error(['Can
www.eeworm.com/read/296430/8103014
c cdbinrnk.c
/*******Test ranks of 100,000 6x8 binary matrices**************
*******Each row a byte from a RNG, overlapping rows*************/
#include "header.h"
#include "macro.h"
/* define a binary matrix */
www.eeworm.com/read/146126/12668476
cpp recursivedpmatrixchain.cpp
// first version of recursive dynamic programming solution for
// the matrix multiplication chains problem
#include
#include "make2dArray.h"
using namespace std;
// global variab
www.eeworm.com/read/331439/12828835
m diag.m
function d = diag(v, k)
% DIAG Diagonal matrices and diagonals of a matrix.
% (Quaternion overloading of standard Matlab function.)
% Copyright
www.eeworm.com/read/141692/12990913
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/141504/13008033
c confmat.c
/*************************************************************************/
/* */
/* Routine for printing confusion matrices */
/* --------------------------------------- */
/*
www.eeworm.com/read/140444/13079935
c confmat.c
/*************************************************************************/
/* */
/* Routine for printing confusion matrices */
/* --------------------------------------- */
/*
www.eeworm.com/read/326814/13115144
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/139952/13119316
c confmat.c
/*************************************************************************/
/* */
/* Routine for printing confusion matrices */
/* --------------------------------------- */
/*
www.eeworm.com/read/139007/13195627
m matrix.m
function A = matrix(k, n)
%MATRIX Test matrices accessed by number.
% MATRIX(K, N) is the N-by-N instance of matrix number K in
% a set of test matrices comprising those in MATLAB pl