本程序包括阻尼牛顿法,共轭梯度法,PDFS、Pwoll算法,适合于二元二次方程。
2019-12-21 20:04:10 916KB 共轭梯度法 阻尼牛顿法 PDFS
1
介绍了共轭梯度法,包含程序以及与其他学习方法的比较。
2019-12-21 19:53:03 7KB 优化
1
matlab编程实现最优化方法中的共轭梯度法。共享给有用的人。
2019-12-21 19:52:56 3KB matlab 共轭梯度法
1
正在学习无约束共轭梯度方法希望大家一起讨论!
2019-12-21 19:51:02 31KB 最优化 共轭梯度
1
Code demo for single-pixel imaging (SPI) with different reconstruction methods including [1] differential ghost imaging (DGI) [2] gradient descent (GD) [3] conjugate gradient descent (CGD) [4] Poisson maximum likelihood (Poisson) [5] alternating projection (AP) [6] sparse representation compressive sensing (Sparse) [7] total variation compressive sensing (TV)
1
采用matlab语言编写,用于求解无约束最优化问题
2019-12-21 19:44:06 854B 共轭梯度法 最优化
1
基于CUDA平台GPU加速的共轭梯度法求解器。示例中提供了线性方程组。
2019-12-21 19:42:11 29KB 共轭梯度法 CUDA
1
共轭梯度法matlab程序 function x = cg(A,b) tol=1e-10; r = b + A*b; w = -r; z = A*w; s = w'*z; t = (r'*w)/s; x = -b + t*w; for k = 1:numel(b); r = r - t*z; if( norm(r) < tol ) return; end B = (r'*z)/s; w = -r + B*w; z = A*w; s = w'*z; t = (r'*w)/s; x = x + t*w; end
2019-12-21 19:39:19 304B 共轭梯度法
1
预处理共轭梯度法求线性方程组Ax=b的解,数值计算,求解方程
2019-12-21 19:35:51 458B
1