代码搜索:协方差矩阵

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

代码结果 10,000
www.eeworm.com/read/406455/11442141

txt 解码.txt

//0,1矩阵解码 CFile JFile; JFile.Open("test.bmp.j01",CFile::modeRead); JFILEHEADER jfh; JFile.Read(&jfh,sizeof(JFILEHEADER)); CString s; s.Format("Height = %d pix",jfh.JHeight); pDC->Text
www.eeworm.com/read/405427/11462730

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/404651/11480598

map jp.map

CodeVisionAVR C Compiler V1.24.7d Professional (C) Copyright 1998-2005 Pavel Haiduc, HP InfoTech s.r.l. http://www.hpinfotech.com File: c:\cvavr\examples\mywork\矩阵键盘\jp.c Global variables memory
www.eeworm.com/read/402672/11530288

cpp main.cpp

#include #define INFINITY 32767 #define MAX_VEX 20 #define QUEUE_SIZE (MAX_VEX+1) using namespace std; bool *visited; //图的邻接矩阵存储结构 typedef struct{ char *vexs; int arcs[MAX_VE
www.eeworm.com/read/401606/11554729

m sectioninput.m

% 截面基本参数的输入与基本常数的计算 % 截面端点数 Nv=input('Please input the number of points of the section: '); % 截面边数 Ne=input('Please input the number of borders of the section: '); % 截面关联矩阵 B=zeros(Nv,Ne);
www.eeworm.com/read/400470/11576058

cpp matrix.cpp

#include "matrix.h" #include using namespace std; Matrix::Matrix(int m,int n, float* a):nrow(m),ncol(n),array(a) { } /* * 构造维数为n的单位矩阵 */ Matrix::Matrix(size_t n):nrow(n),nc
www.eeworm.com/read/157298/11721228

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/346772/11723792

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/259572/11781648

cpp 1.cpp

#include #include #include void input_output(float **a,float *b,int n) { int i,j; printf("请输入系数矩阵\n",n); for(i=0;i
www.eeworm.com/read/344677/11868676

cpp ch7.cpp

#include #include #define N 20 #define INFINITY 99999 typedef enum{DG,DN,UDG,UDN}Graphkind; typedef struct {//邻接矩阵的类型定义 char vexs[N]; int arcs[N][N]; int vexnum,arcnum;