代码搜索:协方差矩阵
找到约 10,000 项符合「协方差矩阵」的源代码
代码结果 10,000
www.eeworm.com/read/144891/12764230
m gauseidel.m
function [y,n]=gauseidel(A,b,x0,eps)
if nargin==3
eps=1.0e-6;
elseif nargin
www.eeworm.com/read/143586/12859363
m fangzhen1_ls.m
function fangzhen1_ls()
pe=6;
%生成增广矩阵Re
M=100;
loops=20;
%pe=25;
%Re=zeros(M,pe+1);
fvMatrix=zeros(pe/2,loops);
arMatrix=zeros(pe,loops);
for loop=1:1:loops
% w = wgn(1,2000,0);
w
www.eeworm.com/read/243219/12954596
h dijkstra.h
//邻接矩阵存储结构
void Dijkstra(AdjMGraph G, int v0, int distance[], int path[])
{
int n=G.Vertices.size;
int *s=(int *)malloc(sizeof(int)*n);
int minDis, i, j, u;
for(i=0;i
www.eeworm.com/read/142108/12962135
h vfunc.h
#ifndef VFUNC_H
#define VFUNC_H
#include
#include "matrix.h"
class valgo // 矩阵算法类
{
private:
DOUBLE yfactor; // 乘因子,初始化为1
DOUBLE xfactor; // x轴放大因子,初始化为1
DOUBLE addconst;
www.eeworm.com/read/142108/12962195
cpp cmatrix.cpp
#include "stdio.h"
#include "string.h"
#include "complex.h"
#include "cmatrix.h"
#include "fstream.h"
// 缺省的构造函数,产生0行0列空复矩阵
cmatrix::cmatrix(cbuffer * b): rownum(0),colnum(0),
isneg(0),istra
www.eeworm.com/read/141990/12974580
cpp hw_1.cpp
#include
#include
#include
//n×m阶矩阵输入函数
float *A_input(int n,int m)
{
int i,j;
float *a;
a=(float *)malloc(n*m*sizeof(float));
for (i=0;i
www.eeworm.com/read/242478/13003206
m jacobi.m
function [y,n]=jacobi(A,b,x0,eps)
if nargin==3
eps=1.0e-6;
elseif nargin
www.eeworm.com/read/242478/13003252
m gauseidel.m
function [y,n]=gauseidel(A,b,x0,eps)
if nargin==3
eps=1.0e-6;
elseif nargin
www.eeworm.com/read/242043/13097430
cpp exam8-1.cpp
#include
#include
typedef char VerT; //定义邻接矩阵图类中的VerT
typedef char DataType; //定义顺序表类中的DataType
const int MaxVertices = 100; //定义最大顶点个数
const int MaxWeight =
www.eeworm.com/read/242043/13097437
cpp exam8-2.cpp
#include
#include
typedef char VerT; //定义邻接矩阵图类中的VerT
typedef char DataType; //定义顺序表类中的DataType
const int MaxVertices = 100; //定义最大顶点个数
const int MaxQueueSize