代码搜索:协方差矩阵
找到约 10,000 项符合「协方差矩阵」的源代码
代码结果 10,000
www.eeworm.com/read/192917/8264828
m jacobi.m
function [y,n]=jacobi(A,b,x0,eps)
if nargin==3
eps=1.0e-6;
elseif nargin
www.eeworm.com/read/192917/8264872
m gauseidel.m
function [y,n]=gauseidel(A,b,x0,eps)
if nargin==3
eps=1.0e-6;
elseif nargin
www.eeworm.com/read/293189/8310002
txt 基于matlab的 floyd最短路算法.txt
function [d,path]=floyd(a,sp,ep)
% floyd - 最短路问题
%
% Syntax: [d,path]=floyd(a,sp,ep)
%
% Inputs:
% a - 距离矩阵是指i到j之间的距离,可以是有向的
% sp - 起点的标号
% ep - 终点的标号
%
% Outputs:
% d
www.eeworm.com/read/292658/8342669
cpp le_totalchoicegaussjordan.cpp
//LE_TotalChoiceGaussJordan.cpp 全选主元高斯-约当消去法
#include //输入输出流头文件
#include "LinearEquation.h" //线性方程(组)求解头文件
void main()
{
int i;
double a[4][4] = //实系数矩阵
{
{1.0,
www.eeworm.com/read/392361/8348612
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
www.eeworm.com/read/368108/9711690
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
www.eeworm.com/read/367107/9782433
cpp le_totalchoicegaussjordan.cpp
//LE_TotalChoiceGaussJordan.cpp 全选主元高斯-约当消去法
#include //输入输出流头文件
#include "LinearEquation.h" //线性方程(组)求解头文件
void main()
{
int i;
double a[4][4] = //实系数矩阵
{
{1.0,
www.eeworm.com/read/270091/11048880
cpp 最小生成树kruskal算法2.cpp
// 最小生成树kruskal算法2
#include
#include
#define MaxVex 10 //最大顶点数
#define MaxEdge 20 //最大边数
// 用邻接矩阵表示
typedef struct
{
int begin;
int end;
int weight;
} edge;
www.eeworm.com/read/269229/11105052
cpp xishum.cpp
//稀疏矩阵相关操作的测试xishuM.cpp
#include
#include
#include
#include
typedef int ElemType;
#define L 6
#define N 7
const int MROW=3;
const int MCOL=4;
#inclu
www.eeworm.com/read/414678/11106643
cpp 旅行商问题.cpp
#include
#include
#include
#include
#define MAXNUM 100000
#define x 0
#define y 1
int n; //图顶点数
int **Loc; //点坐标
int **G; //图的邻接矩阵
int **D; /