代码搜索:Matrices
找到约 3,616 项符合「Matrices」的源代码
代码结果 3,616
www.eeworm.com/read/167185/5462203
c cdmmult.c
cdmmult(A,iA,B,iB,C,iC,M,iM,n)/* multiply complex matrices */
/* M and iM are temporary matrices */
/* C=A*B */
/* A+iA' etc */
/* C=A*B - A'*B' */
/* iC=A*B' + A'*B */
register double *A,*iA,*B,*iB,*
www.eeworm.com/read/475765/6777695
m ex5_11.m
% EX5_11.M Test of Example 5.11
% Eigenvectors (eigvec) and eigenvalues (eigval) for the
% identity matrices (3 x 3)
n=3;Itest=eye(n) % Vary n to test other sizes
[eigvec,eigval]=eig
www.eeworm.com/read/474604/6813665
c confmat.c
/*************************************************************************/
/* */
/* Routine for printing confusion matrices */
/* --------------------------------------- */
/*
www.eeworm.com/read/474604/6813757
c confmat.c
/*************************************************************************/
/* */
/* Routine for printing confusion matrices */
/* --------------------------------------- */
/*
www.eeworm.com/read/473219/6848946
m dec2decbin.m
function s=dec2bin(d,n)
%DEC2BIN Internal function generate binary matrices
% Author Johan L鰂berg
% $Id: dec2decbin.m,v 1.2 2004/07/02 08:17:30 johanl Exp $
[f,e]=log2(max(d)); % How many digi
www.eeworm.com/read/473219/6848970
m see.m
function see(X,showfull)
%SEE Displays internal structure of variable
%
% Shows the base matrices that build up the variable
%
% X = X0+x_1*X1+x_2*X2+...
%
% SEE(X) Disp
www.eeworm.com/read/473219/6849183
m getbase.m
function Q=getbase(X)
%GETBASE Internal function to extract all base matrices
% Author Johan L鰂berg
% $Id: getbase.m,v 1.2 2004/07/01 11:17:10 johanl Exp $
Q=X.basis;
www.eeworm.com/read/472861/6858999
m contents.m
% Mu-Tools Based SYS-ID : Musysid
% Version 1.3 (R11.1) 10-OCT-2001
%
%
% Some tools for MIMO system identification based on both
% the MU-TOOLS Toolbox and the SYSTEM IDENTIFICATION Toolbox :
www.eeworm.com/read/471592/6885990
c confmat.c
/*************************************************************************/
/* */
/* Routine for printing confusion matrices */
/* --------------------------------------- */
/*
www.eeworm.com/read/193277/8241863
m mpt_collect_equalities.m
function Matrices = mpt_collect_equalities(Matrices,equalities)
% These were just found
Aeq_fixed = Matrices.G(equalities,:);
Beq_fixed = -Matrices.E(equalities,:);
beq_fixed = Matrices.W(equali