import_mim_dvh

版本 1.1.0.0 (2.9 KB) 作者: Dylan O'Connell
Read a dose volume histogram (DVH) exported from MIM
157.0 次下载
更新时间 2016/10/24

查看许可证

structures = import_mim_dvh(filename) reads and parses comma seperated value (.csv)
mim DVH filename and returns structures, an array of structs corresponding to the
structures on the DVH. the structures in the array have the following fields:

name: name of structure
dose: vector of dose (x axis of DVH)
volume: vector of % volume (y axis of DVH)
totalvolume: volume of this structure
example: read a DVH and plot dose vs. volume for the ptv
>> structures = import_mim_dvh(filename);
>> structures(1).name
ans =
ptv
>> figure; plot(structures(1).dose, structures(1).volume); title(structures(1).name);

引用格式

Dylan O'Connell (2024). import_mim_dvh (https://www.mathworks.com/matlabcentral/fileexchange/59923-import_mim_dvh), MATLAB Central File Exchange. 检索来源 .

MATLAB 版本兼容性
创建方式 R2016a
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Histograms 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
版本 已发布 发行说明
1.1.0.0

Changed tags.

1.0.0.0