代码搜索:协方差矩阵

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

代码结果 10,000
www.eeworm.com/read/358507/10186117

cpp hello.cpp

#include #include #define INFINITY 32767 #define MAX_VEX 20 //最大顶点个数 bool *visited; //访问标志数组 //图的邻接矩阵存储结构 typedef struct{ char *vexs; //顶点向量 int arcs[MAX_VEX
www.eeworm.com/read/279835/10386279

m shife_phase_grating.m

%% shife_phase_grating,用矩阵法据求bragg的反射谱 clear all clc Speed=3*1e+8; % 光速 % Pg=0.53e-006; % 光栅周期 % Lg=0.001; % 光栅长度 % n1=1.45; % 纤芯原始折射率 %
www.eeworm.com/read/279620/10410038

cpp tushendu.cpp

#include #include #define INFINITY 32767 #define MAX_VEX 20 //最大顶点个数 bool *visited; //访问标志数组 //图的邻接矩阵存储结构 typedef struct{ char *vexs; //顶点向量 int arcs[MAX_VEX
www.eeworm.com/read/161357/10422428

asv max_th.asv

function [soft_out,ex_info]=max_th(n,app) %**************************************************************** % 内容概述:子译码器。 % 利用硬件化的方式实现TURBO码的MAX-LOG-MAP译码 % 生成矩阵按照3GPP标准为[1 1 0 1;
www.eeworm.com/read/424027/10505994

m zigzag.m

function q=zigzag(in) %zigzag扫描函数 %% 函数体 [n,m]=size(in); if( (n~=8) & (m~=8)) error('输入不是 8*8 矩阵格式'); end zig = [ 0, 1, 8, 16, 9, 2, 3, 10, ... %按图写出下边排列顺序,下标从0开始 17, 2
www.eeworm.com/read/352044/10586226

h eigenvaluevector.h

// EigenvalueVector.h 计算特征值特征向量头文件 // Ver 1.0.0.0 // 版权所有(C) 何渝, 2002 // 最后修改: 2002.8.10 #ifndef _EIGENVALUEVECTOR_H //避免多次编译 #define _EIGENVALUEVECTOR_H #include "Matrix.h" //矩阵类及相关函数等
www.eeworm.com/read/422708/10618927

h eigenvaluevector.h

// EigenvalueVector.h 计算特征值特征向量头文件 // Ver 1.0.0.0 // 版权所有(C) 何渝, 2002 // 最后修改: 2002.8.10 #ifndef _EIGENVALUEVECTOR_H //避免多次编译 #define _EIGENVALUEVECTOR_H #include "Matrix.h" //矩阵类及相关函数等
www.eeworm.com/read/351570/10639487

cpp algo0702.cpp

Status CreateUDN(MGraph &G) {// 算法 7.2 // 采用数组(邻接矩阵)表示法,构造无向网G。 int i,j,k,w; VertexType v1,v2; printf("G.vexnum :" ); scanf("%d",&G.vexnum); printf("G.arcnum :"); scanf("%d",&G.a
www.eeworm.com/read/277324/10645647

c jz.c

#include #define MAXN 100 #define MAXM 100 int a[MAXN][MAXM],b[][3]; int row,colu,k; void mat_transpose(a,b) //转置矩阵的函数 int a[][3],b[][3]; { int m,n,t,p,q,col; m=a[0][0]; n
www.eeworm.com/read/421716/10707696

m mainp.m

%======================================main.m====================================== st = cputime; %程序开始时的CPU时间 %程序开始 s1p; %求图像梯度 s2p; %图像二值化 I = imread('pipe.jpg'); %重新读入原始图像的uint8型矩阵 s