代码搜索:协方差矩阵
找到约 10,000 项符合「协方差矩阵」的源代码
代码结果 10,000
www.eeworm.com/read/430926/8718695
c jianpan02.c
/*****************************************************************************
名 称:“jianpan02.c”
Copyright:鸵鸟电子工作室 hrbeu P.R.C.
功 能:在MINI实验板上,按下矩阵键盘的16个按键,分别显示0~F
作 者:彪哥&东方未晞
www.eeworm.com/read/286666/8751525
m markov_ergodic.m
function result = Markov_Ergodic(P) %转移矩阵确定Markov链是否遍历的主函数
%
% 随机数学(30250143, 07Fall) 大作业程序
%
% 作者: 王 音 2004011448
% 葛元恺 2004011425
%
% All rights reserved.
www.eeworm.com/read/286315/8772113
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/385103/8819403
m jacobi.m
function [y,n]=jacobi(A,b,x0,eps)
if nargin==3
eps=1.0e-6;
elseif nargin
www.eeworm.com/read/385103/8819422
m gauseidel.m
function [y,n]=gauseidel(A,b,x0,eps)
if nargin==3
eps=1.0e-6;
elseif nargin
www.eeworm.com/read/187300/8834725
txt jacobi.txt
% A为方程组的增广矩阵
% e为误差容量
function x=myJacobi(A,ep)
if nargin
www.eeworm.com/read/384713/8850232
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/384265/8884836
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/383321/8955107
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/283541/9010501
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