代码搜索:协方差矩阵

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

代码结果 10,000
www.eeworm.com/read/489628/6467752

cpp main.cpp

#include #include #include using namespace std; const double epi = 1e-6; //判断误差界的变量 int N; double A[100][100]; //输入矩阵 double v[100]; //求最大特征值的迭代向
www.eeworm.com/read/488103/6496729

m exa090804_svd.m

%----------------------------------------------------------------------- % exa090804_svd.m, for example 9.8.4 % to test svd.m; % 在MATLAB6.1 和 MATLAB5.3下运行该程序,所得到的 U,V矩阵稍有不同, % 但奇异值是一样的 %---------
www.eeworm.com/read/481728/6637401

m exa090804_svd.m

%----------------------------------------------------------------------- % exa090804_svd.m, for example 9.8.4 % to test svd.m; % 在MATLAB6.1 和 MATLAB5.3下运行该程序,所得到的 U,V矩阵稍有不同, % 但奇异值是一样的 %---------
www.eeworm.com/read/480107/6676947

htm ch5_1_2.htm

矩阵多项式
www.eeworm.com/read/480107/6676953

htm ch5_1_1.htm

基本矩阵运算元
www.eeworm.com/read/477233/6740388

m exa090804_svd.m

%----------------------------------------------------------------------- % exa090804_svd.m, for example 9.8.4 % to test svd.m; % 在MATLAB6.1 和 MATLAB5.3下运行该程序,所得到的 U,V矩阵稍有不同, % 但奇异值是一样的 %---------
www.eeworm.com/read/476179/6763893

htm ch5_1_2.htm

矩阵多项式
www.eeworm.com/read/476179/6763899

htm ch5_1_1.htm

基本矩阵运算元
www.eeworm.com/read/408720/11375797

txt matrixoperation.txt

double * MatrixOpp(double A[],int m,int n) /*矩阵求逆*/ { int i,j,x,y,k; double *SP=NULL,*AB=NULL,*B=NULL,X,*C; SP=(double *)malloc(m*n*sizeof(double)); AB=(double *)malloc(m*n*sizeof(double
www.eeworm.com/read/406534/11440038

cpp cpp1.cpp

#include #define m 30 #define max 99 struct mgraph { int adjmatrix[m][m]; }; mgraph g; void buildnet(mgraph& g,int n) //构造n个城市的邻接矩阵 { int i,j; int data; prin