1234567891011121314151617 |
- function B = merge_beamlets(num_batches, pat_dir)
- % num_batches = 4;
- B = [];
- for k = 1:num_batches
- batch_doses = read_ryan_beamlets([pat_dir, '\batch_dose' num2str(k-1) '.bin']);
- B = [B batch_doses];
- end
- for k = 1:numel(B)
- B{k}.num = k-1;
- end
- write_ryan_beamlets([pat_dir '\batch_dose.bin'],B);
- write_ryan_beamlets([pat_dir '\batch_dose_backup.bin'],B);
|