代码搜索:协方差矩阵

找到约 10,000 项符合「协方差矩阵」的源代码

代码结果 10,000
www.eeworm.com/read/202641/15377407

h 定义.h

typedef int InfoType; # define MAXV 100 /*最大顶点个数*/ /*以下定义邻接矩阵类型*/ typedef struct { int no; /*顶点编号*/ InfoType info; /*顶点其它信息,用于存放边的权值*/ } VertexType; /*顶点类型*/ typede
www.eeworm.com/read/202640/15377414

h grah.h

typedef int InfoType; # define MAXV 100 /*最大顶点个数*/ /*以下定义邻接矩阵类型*/ typedef struct { int no; /*顶点编号*/ InfoType info; /*顶点其它信息,用于存放边的权值*/ } VertexType; /*顶点类型*/ typede
www.eeworm.com/read/201037/15417852

h seqsynmematrix.h

#include "SeqList.h" //包含顺序表类 class SeqSynmeMatrix: public SeqList //n阶对称矩阵顺序表类 //SeqSynmeMatrix类以public方式继承SeqList类 { //输出流重载 friend ostream& operator
www.eeworm.com/read/200566/15430538

htm ch5_1_1.htm

基本矩阵运算元
www.eeworm.com/read/111298/15515010

h seqsynmematrix.h

#include "SeqList.h" //包含顺序表类 class SeqSynmeMatrix: public SeqList //n阶对称矩阵顺序表类 //SeqSynmeMatrix类以public方式继承SeqList类 { //输出流重载 friend ostream& operator
www.eeworm.com/read/110635/15528201

htm ch5_1_2.htm

矩阵多项式
www.eeworm.com/read/110635/15528207

htm ch5_1_1.htm

基本矩阵运算元
www.eeworm.com/read/110635/15528474

htm ch5_1_2.htm

矩阵多项式
www.eeworm.com/read/110635/15528480

htm ch5_1_1.htm

基本矩阵运算元
www.eeworm.com/read/103618/15727844

m exm0611_5.m

%exm0611_5.m 求矩阵的行列式值、逆和特征根 syms a11 a12 a21 a22; A=[a11,a12;a21,a22] DA=det(A) IA=inv(A) EA=eig(A)