get_ROI_goals.m 449 B

123456789101112131415
  1. function [optGoal, optGoal_beam, optGoal_idx, targetMinMax_idx] = get_ROI_goals(patient)
  2. % this is a support function for NLP_beamlet_optimizer. It returns the
  3. % goals planned for specific patients
  4. load(['C:\010-work\003_localGit\WiscPlan_v2\optGoals\' patient, '.mat']);
  5. optGoal = ROI_goals.optGoal;
  6. optGoal_beam = ROI_goals.optGoal_beam;
  7. optGoal_idx = ROI_goals.optGoal_idx;
  8. targetMinMax_idx = ROI_goals.targetMinMax_idx;
  9. end