function normalfigure(x1, y1, y2, y3, y4, y5, y6, y7, y8, y9, y10, y11, y12) %% Create figure figure1 = figure; %% Create axes axes1 = axes('FontSize',20,'XGrid','on','YGrid','on','XMinorTick','on','YMinorTick','on',... 'Box','on','Parent',figure1); axis(axes1,[0 100 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,... 'Parent',axes1,... 'DisplayName','right parotid linear'); % Create plot plot2 = plot(... x1,y2,... 'Color',[0 0 0],... 'LineStyle','--',... 'LineWidth',3,... 'Parent',axes1,... 'DisplayName','right parotid square root'); %% Create plot plot3 = plot(... x1,y3,... 'Color',[0 0 0],... 'LineStyle','-.',... 'LineWidth',3,... 'Parent',axes1,... 'DisplayName','right parotid quadratic'); plot4 = plot(... x1,y4,... 'Color',[0.3 0.3 0.3],... 'LineWidth',3,... 'Parent',axes1,... 'DisplayName','cord linear'); %% Create plot plot5 = plot(... x1,y5,... 'Color',[0.3 0.3 0.3],... 'LineStyle','--',... 'LineWidth',3,... 'Parent',axes1,... 'DisplayName','cord square root'); %% Create plot plot6 = plot(... x1,y6,... 'Color',[0.3 0.3 0.3],... 'LineWidth',3,... 'LineStyle','-.',... 'Parent',axes1,... 'DisplayName','cord quadratic'); %% Create plot plot7 = plot(... x1,y7,... 'Color',[0.5 0.5 0.5],... 'LineWidth',3,... 'Parent',axes1,... 'DisplayName','larynx linear'); %% Create plot plot8 = plot(... x1,y8,... 'Color',[0.5 0.5 0.5],... 'LineWidth',3,... 'LineStyle','--',... 'Parent',axes1,... 'DisplayName','larynx square root'); %% Create plot plot9 = plot(... x1,y9,... 'Color',[0.5 0.5 0.5],... 'LineWidth',3,... 'LineStyle','-.',... 'Parent',axes1,... 'DisplayName','larynx quadratic'); %% Create plot plot10 = plot(... x1,y10,... 'Color',[0.7 0.7 0.7],... 'LineWidth',3,... 'Parent',axes1,... 'DisplayName','normal linear'); %% Create plot plot11 = plot(... x1,y11,... 'Color',[0.7 0.7 0.7],... 'LineStyle','--',... 'LineWidth',3,... 'Parent',axes1,... 'DisplayName','normal square root'); %% Create plot plot12 = plot(... x1,y12,... 'Color',[0.7 0.7 0.7],... 'Parent',axes1,... 'LineStyle','-.',... 'LineWidth',3,... 'DisplayName','normal quadratic'); % % % %% Create plot % plot13 = plot(... % x1,y13,... % 'Color',[0 0.5 0],... % 'LineStyle','--',... % 'LineWidth',3,... % 'Parent',axes1,... % 'DisplayName','cord square root'); % % %% Create plot % plot14 = plot(... % x1,y14,... % 'Color',[1 0 0],... % 'LineStyle','--',... % 'Parent',axes1,... % 'LineWidth',3,... % 'DisplayName','cord quadratic'); % % %% Create plot % plot15 = plot(... % x1,y15,... % 'Color',[0.75 0 0.75],... % 'LineStyle','--',... % 'Parent',axes1,... % 'LineWidth',3,... % 'DisplayName','cord Gompertz'); %% Create legend % legend1 = legend(axes1,{'right parotid linear','right parotid square root','right parotid quadratic',... % 'cord linear','cord square root','cord quadratic','larynx linear','larynx square root'},... % 'FontName','Arial',... % 'FontSize',20,... % 'Location','NorthEast');