代码搜索:协方差矩阵

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

代码结果 10,000
www.eeworm.com/read/253521/12217518

m jacobi.m

function [y,n]=jacobi(A,b,x0,eps) if nargin==3 eps=1.0e-6; elseif nargin
www.eeworm.com/read/253521/12217548

m gauseidel.m

function [y,n]=gauseidel(A,b,x0,eps) if nargin==3 eps=1.0e-6; elseif nargin
www.eeworm.com/read/338792/12283382

f90 ub1.f90

!***************************************************************************! ! SUBROUTINE UB1(nd1,nb1,u1,nd,iw,sk,u) ! ! 功能 在定带宽储存的总体系数矩阵和右侧列向量上加上第一类边界条件。
www.eeworm.com/read/251718/12322905

c beeo_core.c

#include "beeo_Core.h" #include "sortedList.h" #include "beeo/beeo_Basic.h" static BEEO_PROCESSOR bp = {0,}; static unsigned char beeo_PatternForMatrix[BEEO_DH_BYTES] = {//用于生成矩阵的模数 0xFF,0x
www.eeworm.com/read/149959/12329254

cpp 剃度下降法.cpp

#include void DECIDCE(int Y[][4],int A[],int P[]) { int count=0; for(int j=0;j
www.eeworm.com/read/250868/12380833

txt 最小生成树kruskal算法.txt

/* Name:最小生成树kruskal算法 Author:wujilin Description:用邻接矩阵做图 Date: 21-07-06 23:07 Copyright:wujilin */ #include #include #define M 20 #define MAX 20 typedef struct { i
www.eeworm.com/read/233292/14159140

m jacobi.m

function [y,n]=jacobi(A,b,x0,eps) if nargin==3 eps=1.0e-6; elseif nargin
www.eeworm.com/read/233292/14159160

m gauseidel.m

function [y,n]=gauseidel(A,b,x0,eps) if nargin==3 eps=1.0e-6; elseif nargin
www.eeworm.com/read/110938/14233327

cpp lmatrix.cpp

#include #include #define maxrows 100 //矩阵行数最大值100 struct triplenode { int row,col; //非零元素的行下标row ,列下标col float val; //元素值 triplenode *next; }; struct lma
www.eeworm.com/read/227861/14408373

m exm062_1.m

%exm062_1.m clear,clf t=(0:pi/50:2*pi)'; %生成(101*1)的列向量 k=0.4:0.1:1; %生成(1*7)的行向量 Y=cos(t)*k; %生成(101*7)的矩阵 plot(t,Y) shg