资源简介
可实现CT重建 ART算法
对于初步了解迭代算法的很有帮助哦!

代码片段和文件信息
function [Xrhoeta] = art(Abk)
%ART Algebraic reconstruction technique (Kaczmarz‘s method).
%
% [Xrhoeta] = art(Abk)
%
% Classical Kaczmarz iteration or ART (algebraic reconstruction
% technique) applied to the system A x = b. The number of
% iterations is k.
% Reference: F. Natterer and F. W黚beling Mathematical Methods
% in Image Reconstruction SIAM Philadelphia 2001; Sect. 5.3.1.
% Per Christian Hansen IMM Dec. 6 2006.
% Initialization.
if (k < 1) error(‘Number of steps k must be positive‘) end
[mn] = size(A); X = zeros(nk);
if (nargout > 1)
eta = zeros(k1); rho = eta;
end
% Prepare for iteration.
x = zeros(n1);
%nai2 = full(sum(A.*A2));
nai2 = full(sum(abs(A.*A)2));
I = find(nai2>0)‘;
% Iterate.
for j=1:k
for i=I
Ai = full(A(i:));
x = x + (b(i)-Ai*x)*Ai‘/nai2(i);
end
if (nargout > 1)
eta(j) = norm(x); rho(j) = norm(b-A*x);
end
X(:j) = x;
end
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 963 2007-09-19 19:57 art.m
----------- --------- ---------- ----- ----
963 1
- 上一篇:GP2Y1010AU0F中文资料
- 下一篇:大数阶乘用单链表实现大数阶乘
相关资源
- 实验三 消息中间件应用开发:Active
- AsyncTask文件控制暂停和继续,在状态
- 基于STM32RCT6的步进电机驱动程序
- DV泵加罗茨泵独立控制系统PID.smart
- 200smart单按钮启停.smart
-
Actionsc
ript 1.0实现能跟随鼠标运动的 - ectouch最新版JSAPI微信支付V3插
- ectouch 微信支付插件
- ecshop微信支付含手机版ectouch
-
Windows em
bedded Compact 2013 应用开发调 - The direction of synaptic plasticity mediated
- Reparatory Effects of Nicotine on NMDA Recepto
- Histamine excites rat lateral vestibular nucle
- Fabrication and all-optical poling characteris
- Quartus II 15.0中仿真Altera三速以太网I
- Quartus II 15.0中仿真Altera三速以太网I
- Zprotect专业版(无限制) 一机一码E
- Crystal Impact Match!2.1.3 试用延长
- 基于MFC扩展CListCtrl子项显示图片并叠
- 3人表决器 QuartusII
- Verilog FPGA UART串口控制器
- 编程实现二维DCT变换
- vc 柱形图 CBarChart
- zen_cart_1.3.9h_ 配置文件优化
- Google Earth KML文件生成工具
- google earth 高程点坐标提取软件
- 一款非常漂亮的表单select下拉框样式
- 硬件课程设计—流水灯(quartus软件
- 分数阶傅里叶变换不同阶数下的应用
- UART转CAN或LIN的工具(Uart2any)和文档
评论
共有 条评论