-
平均因子分解法应用于正定矩阵
平均因子分解法,适用于正定矩阵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
-
GEP(函数发现等)
基于遗传算法的基因编程表达式,在函数发现这方面具有较好的表现。用C#实现,在做参数优化的时候用上GEP会取得更好的效果。
不同于GA,不会出现过早收敛
- 2022-01-31 12:28:25下载
- 积分:1
-
物理动画处理
物理动画
- 2022-07-17 18:55:28下载
- 积分:1
-
使用络文库的有限域运算的示例
Gf2 系列类代表域译码。计算上讲,它不是特别有用的类。它的主要用途是使各种有限域类的接口尽可能均匀。Gf2 系列的头文件还声明类 ref_GF2,其中用来表示非 const 引用到 gf2 系列,如那些从索引 vec_GF2,其中"包"gf2 系列的获得成单词。有从 ref_GF2 到 const gf2 系列隐式转换从 gf2 系列及到 ref_GF2。因此,如果你想要宣布带 GF2 非 const 引用的函数,你应声明的参数的类型 ref_GF2: 这将允许您传递 gf2 系列类型的变量以及 vec_GF2 元素的获得通过索引。
- 2022-09-01 07:50:03下载
- 积分:1
-
es 联合国 buen producto se trata de la conexion del arduino con el 软件 labview
Es 联合国帕斯方案十分构成 se trata de la conexion del arduino con el 软件 labview 德调查 es 联合国 sub VI de labview
- 2022-02-04 06:52:01下载
- 积分:1
-
傅里叶变换算法fft
How To Use
void main(void)
{
gen_w_r2(w, N); // Generate coefficient table
bit_rev(w, N>>1); // Bit−reverse coefficient table
DSPF_sp_cfftr2_dit(x, w, N);
// radix−2 DIT forward FFT
// input in normal order, output in
// order bit−reversed
// coefficient table in bit−reversed
// order
DSPF_sp_icfftr2_dif(x, w, N);
// Inverse radix 2 FFT
请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2022-03-02 15:55:21下载
- 积分:1
-
STM32 FFT算法
应用背景此算法基于原子MINISTM32开发板写的,用了官方提供的DSP库函数来FFT,官方的DSP库有 64,256,1024点的FFT算法,效果还不错,就是太占CPU了,以至于有点卡,效果是通过串口助手打印数据,我想把AD采集的进来的再FFT算法,但没有实现。关键技术DSP,数字信号处理就是用数值计算的方式对信号进行加工的理论和技术,它的英文原名叫digital signal processing,简称DSP。另外DSP也是digital signal processor的简称,即数字信号处理器,STM32系列出了DSP库,让没有DSP芯片的朋友尝试了DSP的好处。而FFT,FFT(Fast Fourier Transformation),即为快速傅氏变换,是离散傅氏变换的快速算法,它是根据离散傅氏变换的奇、偶、虚、实等特性,对离散傅立叶变换的算法进行改进获得的.波形数据处理的首选
- 2022-03-10 15:42:56下载
- 积分:1
-
使用lm算法对二维圆数据进行拟和,其中test_circle用于生成测试数据 fit2dcircle用于拟和 document.doc对算法原理进行详细说明 程
使用lm算法对二维圆数据进行拟和,其中test_circle用于生成测试数据 fit2dcircle用于拟和 document.doc对算法原理进行详细说明 程序使用bcc5.60编译通过- Uses the lm algorithm to carry on for the two-dimensional round
data draws up with, test_circle uses in to produce test data
fit2dcircle to use in to draw up carries on the specify procedure with
document.doc to the algorithm principle to use the bcc5.60 translation
to pass
- 2023-07-05 23:00:03下载
- 积分:1
-
GA算法FORTRAN库
资源描述
GA算法的fortran通用 库, 加入少量代码就能用
GA算法的fortran通用 库, 加入少量代码就能用
- 2022-04-06 15:49:30下载
- 积分:1
-
matlab仿真硬件时用的定点化仿真
应用背景matlab仿真硬件时用的定点化仿真,一般用matlab 直接生成的滤波器响应仿真,因为结果是浮点的,所以和真实硬件计算出的结果差别很大。所以应当进行定点化处理,再检查响应曲线,在硬件设计(FPGA)就应该提前清楚到底要多和位的精度。关键技术输入参数是归一化的浮点数以及位宽,bit_floor.m用来仿真低位直接截断后的效果。bit_round.m是硬件按真正的四舍五入截断处理后的效果。bit_round_hw.m是仿真硬件处理里简化版四舍五入。
- 2022-12-06 11:40:03下载
- 积分:1