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!