代码搜索:协方差矩阵

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

代码结果 10,000
www.eeworm.com/read/425793/10322506

m cmpmatrix.m

function flag=cmpmatrix(a,b) % cmpmatrix function % 用于确定两个矩阵维数是否相等的比较函数 % Copyright 2000-2001 ECUST. % $Revision: 1.1 $ $Date: 2002/02/11 21:58:12 $ if any(any(a~=b)), flag='matrix i
www.eeworm.com/read/425793/10322639

m qstable.m

function s=qstable(a) % 确定系统矩阵a的稳定性 % Copyright 2000-2001 ECUST. % $Revision: 1.1 $ $Date: 2001/12/12 14:11:48 $ system_root=eig(a),i=find(real(system_root)>0); if ~isempty(i),s='system u
www.eeworm.com/read/353896/10406840

m inv.m

%求逆矩阵 %用法 B=inv(A) 其中A为数值或符号方阵,B返回A的逆 %例如 % inv([1 2;3 4]) %数值 % syms a b c d;inv([[a,b;c,d]) %符号 % %INV Matrix inverse. % INV(X) is the inverse of the square
www.eeworm.com/read/353896/10407169

m rand.m

%R=rand(m,n) 生成(0,1)上均匀分布的m行n列随机矩阵 %RAND Uniformly distributed random numbers. % RAND(N) is an N-by-N matrix with random entries, chosen from % a uniform distribution on the interval (0.0,1.0
www.eeworm.com/read/161357/10422037

m com_decoder_th.m

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

asv zigzag.asv

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, ... 17, 24, 32, 25, 18, 11, 4, 5, ..
www.eeworm.com/read/352044/10586084

cpp le_totalchoicegauss.cpp

//LE_TotalChoiceGauss.cpp 全选主元高斯消去法 #include //输入输出流头文件 #include "LinearEquation.h" //线性方程(组)求解头文件 void main() { int i; double a[4][4] = //实系数矩阵 { {0.2368, 0.2471,
www.eeworm.com/read/421634/10723286

cpp l5_4.cpp

//稀疏矩阵的十字链表相加 #include struct linknode { int i, j; linknode *cptr, *rptr; union { int v; //*表结点使用V域,表示非零元值*/ linknode *next; //表头结点使用next
www.eeworm.com/read/421634/10723292

cpp l5_3.cpp

//建立稀疏矩阵的十字链表 #include struct linknode { int i, j; linknode *cptr, *rptr; union { int v; //表结点使用V域,表示非零元值 linknode *next; //表头结点使用next域
www.eeworm.com/read/349361/10833579

cpp 1698_xiedi.cpp

#include #include const maxint = 1000000; short g[380][380], d[380]; //邻接表 char c[380][380], f[380][380]; //邻接矩阵 int q[400], fa[400], s, t; //队列和增广路径 bool