代码搜索:协方差矩阵
找到约 10,000 项符合「协方差矩阵」的源代码
代码结果 10,000
www.eeworm.com/read/241771/13121000
c tc14-2.c
/******************
tc14-2.c
二维数组的存储
******************/
#include "stdio.h"
int main( )
{
int a[3][4]; /* 定义二维数组 */
int j,i;
printf(" 二维数组的存储\n\n");
printf("输入的矩阵为:\n");
www.eeworm.com/read/240259/13228410
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/240067/13238250
txt tsp.txt
求解tsp问题的遗传算法
function [bestpop,trace]=ga(D,termOps,num,pc,cxOps,pm,alpha)
%
%????????????????????????
%[bestpop,trace]=ga(D,termOps,num,pc,cxOps,pm,alpha)
%D:距离矩阵
%termOps:种群带数
%num:每带染色体的个数
%
www.eeworm.com/read/324789/13244977
m jacobi.m
function [y,n]=jacobi(A,b,x0,eps)
if nargin==3
eps=1.0e-6;
elseif nargin
www.eeworm.com/read/324789/13245007
m gauseidel.m
function [y,n]=gauseidel(A,b,x0,eps)
if nargin==3
eps=1.0e-6;
elseif nargin
www.eeworm.com/read/239924/13247858
c power_cal.c
#include
#include
#include
#define n 11 //矩阵阶数,根据实际修改
#define finished 1
#define stop -1
#define effective_num 9 //有效数字位数
#define MAX_times 100 //最大
www.eeworm.com/read/137520/13317215
m jacobi.m
function [y,n]=jacobi(A,b,x0,eps)
if nargin==3
eps=1.0e-6;
elseif nargin
www.eeworm.com/read/137520/13317247
m gauseidel.m
function [y,n]=gauseidel(A,b,x0,eps)
if nargin==3
eps=1.0e-6;
elseif nargin
www.eeworm.com/read/320379/13427830
cpp guanjianlujing.cpp
#include
#include
#include
#include
#include
typedef struct ArcCell{
int adj;/*顶点关系类型,用1表示相邻,0表示不相邻*/
}ArcCell,**AdjMatrix;/*邻接矩阵*/
type
www.eeworm.com/read/319341/13453292
m exp03_rls.m
3.RLS算法的仿真程序:
% RLS算法
randn('seed', 0) ;
rand('seed', 0) ;
NoOfData = 8000 ; % Set no of data points used for training
Order = 32 ; % 自适应滤波权数
Lambda = 0.98 ; % 遗忘因子
Delta = 0.001 ; % 相关矩阵R的初始化