Skip to content

dose optimization #741

Closed Answered by wahln
NatukiAdachi asked this question in Q&A
Jul 1, 2024 · 13 comments · 4 replies
Discussion options

You must be logged in to vote

The part below should be directly run after loading:

% cstをループで回して、条件に一致する場合にPriorityとalphaXを変更
for i = 1:numCstEntries
  if strcmp(cst{i, 3}, 'TARGET')
    cst{i, 5}.Priority = 1; % Targetに対するPriorityの設定 1or2
    cst{i, 5}.alphaX = 0.5; % Targetに対するalphaXの設定 変えない
  elseif strcmp(cst{i, 3}, 'OAR')
    cst{i, 5}.Priority = 2; % OARに対するPriorityの設定 1or2
    cst{i, 5}.alphaX = 0.1; % OARに対するalphaXの設定 0.1or0.25
  end
end

Otherwise the changes are not applied before extracting the information and applying the overlap.

Also try to update to the latest dev branch (now contains all changes to dev_varRBErobOpt), a few days ago we fixed a bug related to display.

You can also try to manually plot sli…

Replies: 13 comments 4 replies

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
1 reply
@wahln
Comment options

wahln Aug 6, 2024
Maintainer

Comment options

You must be logged in to vote
1 reply
@wahln
Comment options

wahln Aug 6, 2024
Maintainer

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
1 reply
@wahln
Comment options

Comment options

You must be logged in to vote
1 reply
@wahln
Comment options

Answer selected by wahln
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
4 participants