代码搜索:Matrices
找到约 3,616 项符合「Matrices」的源代码
代码结果 3,616
www.eeworm.com/read/167728/5454103
todo
* Document Jacobi eigen function, in particular that it only works for
symmetric matrices.
www.eeworm.com/read/167185/5462074
c dmtrace.c
double dmtrace(M1,M2,n)/* returns trace of M1*M2, M1 and M2 matrices */
register double *M1,*M2;
register int n;
{
register int i;
register double trace;
double dot();
trace=0;
for(i=0;i
www.eeworm.com/read/167185/5462092
c dmsub.c
dmsub(A,B,C,n)/* matrices C=A-B */
register double *A,*B,*C;
register int n;
{
register int i,lim;
lim=n*n;
for(i=0;i
www.eeworm.com/read/167185/5462189
c dmtrace.c
double dmtrace(M1,M2,n)/* returns trace of M1*M2, M1 and M2 matrices */
register double *M1,*M2;
register int n;
{
register int i;
register double trace;
double dot();
trace=0;
for(i=0;i
www.eeworm.com/read/167185/5462207
c dmsub.c
dmsub(A,B,C,n)/* matrices C=A-B */
register double *A,*B,*C;
register int n;
{
register int i,lim;
lim=n*n;
for(i=0;i
www.eeworm.com/read/474986/6798898
m mboxtest.m
function [MBox] = MBoxtest(X,alpha)
% Multivariate Statistical Testing for the Homogeneity of Covariance Matrices by the Box's M.
%
% Syntax: function [MBox] = MBoxtest(X,alpha)
%
%
www.eeworm.com/read/294203/8246518
m bidiagonalize.m
function [U, B, V] = bidiagonalize(A)
% Bidiagonalize A, such that U * A * V = B and U' * B * V' = A. B is the
% same size as A, has no vector part, and is upper or lower bidiagonal
% depending on it
www.eeworm.com/read/293183/8310606
m meancov.m
%MEANCOV Means and covariance estimation from multiclass data
%
% [U,G] = meancov(A)
%
% Computation of a set of mean vectors U and a set of covariance
% matrices G of the classes in the dataset A
www.eeworm.com/read/172474/9706109
m ops.m
function ops
%OPS
%Number of multiplications in multiplying 3 or 4 matrices.
%illustrates that the number depends on the grouping.
%Calling format: ops
%Copyright Gareth Williams, Stetson Un
www.eeworm.com/read/367160/9779514
f alahdg.f
SUBROUTINE ALAHDG( IOUNIT, PATH )
*
* -- LAPACK test routine (version 3.1.1) --
* Univ. of Tennessee, Univ. of California Berkeley and NAG Ltd..
* November 2006
*
* .. Scalar