How to keep adding rows in a structure inside a for loop
39 次查看(过去 30 天)
显示 更早的评论
The screenshot below is what I want to accomplish. I have a for loop that, for each organ name, calculates the coverage, maxdose, and meandose. I would like to create an empty structure, then inside the for loop, for each iteration, store the corresponding information in a row, and then adds on to it for the next iteration. How would I do this?
psuedo code:
create a struct called PatientInfo with fieldnames: 'name', 'coverage', 'maxdose', and 'meandose'
for i = 1:4
calculates the corresponding coverage, maxdose & meandose;
writes these values to a row
end
0 个评论
回答(2 个)
Walter Roberson
2018-1-24
编辑:Walter Roberson
2018-1-24
PatientInfo = struct('name', {'BodyAuto', 'BrainStem', 'SpinalCord', 'Parotid_R'}, 'coverage', [], 'maxdose', [], 'meandose', []);
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Analyze Coverage and View Results 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!