write_presc_phantom.m 652 B

1234567891011121314151617181920
  1. function presc = write_presc(tumorPresc)
  2. fid = fopen('TumorDosePlus.bin','wb');
  3. fwrite(fid,tumorPresc.x_count,'int');
  4. fwrite(fid,tumorPresc.y_count,'int');
  5. fwrite(fid,tumorPresc.z_count,'int');
  6. fwrite(fid,tumorPresc.Nind,'int32');
  7. fwrite(fid,tumorPresc.non_zero_indices,'int32');
  8. fwrite(fid,tumorPresc.non_zero_values,'single');
  9. fclose(fid);
  10. fid = fopen('TumorDoseMinus.bin','wb');
  11. fwrite(fid,tumorPresc.x_count,'int');
  12. fwrite(fid,tumorPresc.y_count,'int');
  13. fwrite(fid,tumorPresc.z_count,'int');
  14. fwrite(fid,tumorPresc.Nind,'int32');
  15. fwrite(fid,tumorPresc.non_zero_indices,'int32');
  16. fwrite(fid,tumorPresc.non_zero_values,'single');
  17. fclose(fid);
  18. cd ..;