1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- function humanfigure(x1,y1,y2,y3)
-
- %% Create figure
- figure1 = figure;
-
- %% Create axes
- axes1 = axes('FontSize',20,'XGrid','on','YGrid','on','XMinorTick','on','YMinorTick','on',...
- 'Box','on','Parent',figure1);
- axis(axes1,[74 83 0 100]);
- xlabel(axes1,'Dose [Gy]','FontWeight','Bold','FontName','Arial',...
- 'FontSize',20);
- ylabel(axes1,'Percent Volume','FontWeight','Bold','FontName','Arial',...
- 'FontSize',20);
- hold(axes1,'all');
- %% Create plot
- plot1 = plot(...
- x1,y1,...
- 'Color',[0,0,0],...
- 'LineWidth',3,...
- 'LineStyle','-.',...
- 'Parent',axes1,...
- 'DisplayName','tumor uniform');
- %% Create plot
- plot2 = plot(...
- x1,y2,...
- 'Color',[0,0,0],...
- 'LineWidth',3,...
- 'LineStyle','--',...
- 'Parent',axes1,...
- 'DisplayName','tumor linear');
-
- %% Create plot
- plot3 = plot(...
- x1,y3,...
- 'Color',[0,0,0],...
- 'LineWidth',3,...
- 'Parent',axes1,...
- 'DisplayName','tumor square root');
-
- %% Create legend
- legend1 = legend(axes1,{'2.45 cm Jaw Width','0.62','tumor square root','tumor quadratic'},...
- 'FontName','Arial',...
- 'FontSize',20,...
- 'Location','NorthEast');
- %'tumor DVH','prescription DVH',
- % %'normal 2.45 cm','normal 0.625 cm',...
- % 'larynx 2.45 cm', 'larynx 0.625 cm',...
- % 'right parotid 2.45 cm','right parotid 0.625 cm',...
- % 'left parotid 2.45 cm','left parotid 0.625cm',...
- % 'cord 2.45 cm','cord 0.625 cm'},...
-
|