1234567891011121314151617181920 |
- function presc = write_presc(tumorPresc)
- fid = fopen('TumorDosePlus.bin','wb');
- fwrite(fid,tumorPresc.x_count,'int');
- fwrite(fid,tumorPresc.y_count,'int');
- fwrite(fid,tumorPresc.z_count,'int');
- fwrite(fid,tumorPresc.Nind,'int32');
- fwrite(fid,tumorPresc.non_zero_indices,'int32');
- fwrite(fid,tumorPresc.non_zero_values,'single');
- fclose(fid);
- fid = fopen('TumorDoseMinus.bin','wb');
- fwrite(fid,tumorPresc.x_count,'int');
- fwrite(fid,tumorPresc.y_count,'int');
- fwrite(fid,tumorPresc.z_count,'int');
- fwrite(fid,tumorPresc.Nind,'int32');
- fwrite(fid,tumorPresc.non_zero_indices,'int32');
- fwrite(fid,tumorPresc.non_zero_values,'single');
- fclose(fid);
- cd ..;
|