Gamma index analysis calculation
11 ビュー (過去 30 日間)
古いコメントを表示
Hi
I have two matrix values of size 27 cm x27 cm (A1 and A20 and I would like to get the difference in distance value and also difference in dose for each pixel. Given below is the formula, sqrt((r/DTA)^2+(dose/DD)^2) DTA has been set fixed to 2 and DD to 0.03 r is the radius between one pixel to another (for eg. in this case we use 2, so we want to define the difference in distance 2 mm from one pixel), dose is simply the dose difference from one pixel to another. Note that, the value inside 27x27 matrix earlier is the value of dose in each pixel.
I have tried earlier using this code, but I dont know how to calclate difference in distance for the given DTA= 2 mm
DTA=3; dosed=0.03; size1=size (A1) ; size2=size (A2) ; G=zeros (size1) ; %this will be the output Ga=zeros (size1) ; for i = 1 : size1(1) for j = 1 : size1(1) d2 =(A1(i,j)- A2(i,j))^2 ; %difference squared Ga(i,j) = sqrt(r2/(DTA^2)+ d2/(dosed)^2); end end
Really appreciate if someone can help with this Tq
5 件のコメント
Nataly Diaz Rivera
2022 年 3 月 18 日
Could you please email me the code. I am very grateful to you email : natadi02@ucm.es
Abdelkrim ZEGHARI
2023 年 7 月 21 日
Could you please email me the code. I am very grateful to you email : a.zeghari@um5s.net.ma Best respects
回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Gamma Functions についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!