代码搜索:协方差矩阵

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

代码结果 10,000
www.eeworm.com/read/284945/8881699

cpp 导纳矩阵的形成.cpp

#include #include #define N 4 #define M N*(N-1)/2 void trianglestore(int A[N][N]) { int i,j; for(i=0;i
www.eeworm.com/read/282614/9080015

cpp 图-邻接矩阵.cpp

#include using namespace std; #include #include #define OK 1 #define ERROR 0 #define NULL 0 #define OVERFLOW -2 #define TRUE 1 #define FALSE 0 #define INFI
www.eeworm.com/read/376627/9311862

c 矩阵乘法动态规划.c

/* * File: multi.c * Description: 矩阵乘法动态规划 * Created: 10:20 2001-12-3 * Author: Justin Hou [mailto:justin_hou@hotmail.com] * */ #include #define N 7 int midd
www.eeworm.com/read/363342/9958294

c 矩阵乘法动态规划.c

/* * File: multi.c * Description: 矩阵乘法动态规划 * Created: 10:20 2001-12-3 * Author: Justin Hou [mailto:justin_hou@hotmail.com] * */ #include #define N 7 int midd
www.eeworm.com/read/426007/10294540

txt 雅克比迭代矩阵.txt

a=[10 -1 -2;-1 10 -2;-1 -1 5];%雅克比方法计算迭代矩阵 b=[72;83;42]; d1=(diag(a))'; [n,n]=size(a); I=eye(n,n); d=diag(d1); c=inv(d);%D的逆矩阵 f=c*a; B=I-f; g=c*b
www.eeworm.com/read/158878/10722782

txt 求矩阵转置.txt

// 求矩阵转置 #include #include const m=10,n=10,MAXSIZE=20; struct Triple {int i,j,e;}; struct TSMatrix {Triple data[MAXSIZE]; int mu,nu,tu;}; int n