-
平均因子分解法应用于正定矩阵
平均因子分解法,适用于正定矩阵First, let s recall the definition of the Cholesky decomposition: Given a symmetric positive definite square matrix X, the Cholesky decomposition of X is the factorization X=U U, where U is the square root matrix of X, and satisfies:
(1) U U = X
(2) U is upper triangular (that is, it has all zeros below the diagonal).
It seems that the assumption of positive definiteness is necessary. Actually, it is "positive definite" which guarantees the existence of such kind of decomposition. -Average factor decomposition method applied to positive definite matrix First, let s recall the definition of the Cholesky decomposition: Given a symmetric positive definite square matrix X, the Cholesky decomposition of X is the factorization X = UU, where U is the square root matrix of X, and satisfies: (1) UU = X (2) U is upper triangular (that is, it has all zeros below the diagonal). It seems that the assumption of positive definiteness is necessary. Actually, it is positive
- 2022-10-16 04:30:02下载
- 积分:1
-
lms speed 2
这里我上传了lms算法spped 2文件,在这里我们使用了高效的定点实现和区域延迟节能算法,这与之前的算法有很大的不同。。
- 2022-03-24 12:14:02下载
- 积分:1
-
poj 3310 的代码和方法说明,个人原创
poj 3310 的代码和方法说明,个人原创- the codes and solution for poj_3310.
- 2022-03-04 14:25:01下载
- 积分:1
-
定点化fft变换
快速傅里叶变换的算法,由于浮点数在计算机中运算速度要低于整型,本程序在fft快速变换的基础上,将程序转换为定点运算,进一步提高速度。
- 2023-02-13 07:05:03下载
- 积分:1
-
快速获取3D重建切片的算法
本程序由kyungsang基姆制作。如果你有问题或问题,发送电子邮件到me.kssigari@gmail.complease试试这些测试步骤1。模拟器是用于测量投影。2。demo2是解析重建众所周知过滤backprojection3。Demo3 is the iterative reconstruction using the maximum likelihood expectation maximization (MLEM) method.nx: number of image pixels of x-directionny: number of image pixels of y-directionnz: number of image pixels of z-directionsx: real size (length) of x-axis of the image -> resolution of a pixel = sx/nxsx: real size (length) of y-axis of the image -> resolution of a pixel = sy/nysx: real size (length) of z-axis of the image -> resolution of a pixel = sz/nznu: number of detector pixels of x-direction (u)nv: number of detector pixels of z-direction (axial) (v)su: size of real (length) of detector u-direction -> resolution of a pixel = su/nusv: size of real (length) of detector v-direction -> resolution of a pixel = sv/nvDSD: distance between source to detectorDSO: distance between source to iso-center (image center).dir: rota
- 2022-07-08 11:47:05下载
- 积分:1
-
仿生模式识别 目标跟踪
用仿生模式识别来训练目标,在视频序列中跟踪目标
function [sausage, num] = hypersausage_construct(P)
%按照样本给定的顺序去求解超香肠神经元
[~, W] = size(P);%W是训练样例的个数
sausage = [];
for i = 2:W
temp = power_two(P(:, i - 1), P(:, i));%构建第i-1个神经元 //temp是一个行向量
%temp = power_three(P(:, i - 2), P(:, i-1),P(:,i));
sausage = [sausage temp];
end
sausage = [sausage P(:, end)];
num = (size(sausage, 2) - 1) / (W - 1);
- 2023-08-13 14:40:03下载
- 积分:1
-
离散正弦变换程序
离散正弦变换程序-discrete sine transform procedures
- 2023-09-03 14:40:03下载
- 积分:1
-
nfa 转换到 dfa
这是在源代码的 NFA DFA 转换到c#.欢迎下载,然后再试。谢谢您的支持!
- 2022-02-13 06:37:54下载
- 积分:1
-
河内市塔
towers of hanoi non recursive C-towers of hanoi non recursive C++
- 2022-02-09 22:20:55下载
- 积分:1
-
//产生0
//产生0-1之间均匀分布一个随机数// /////////////////////////////////////////////////////////////// //传入参数:r--双精度实型变量指针,指向的单元存放随机数种子值//// //传出参数:p:产生0-1之间均匀分布一个随机数 -//0-1 have a uniform distribution between random numbers// //////////////////////////////////// ///////////////////////////// imported parameters : r-- double precision real- variable pointer to the storage unit random number seed////// out parameters : p : 0-1 produce a uniform distribution between random numbers
- 2022-05-19 12:42:14下载
- 积分:1