function createfigure1(YMatrix1)
%CREATEFIGURE1(YMATRIX1)
%  YMATRIX1:  matrix of y data

%  Auto-generated by MATLAB on 21-Jun-2018 14:34:11

% Create figure
figure1 = figure;

% Create axes
axes1 = axes('Parent',figure1,...
    'Position',[0.0507760711398543 0.0614250614250614 0.843322554567502 0.918857493857493]);
box(axes1,'on');
hold(axes1,'all');

% Create multiple lines using matrix input to plot
plot1 = plot(YMatrix1,'Parent',axes1);
set(plot1(1),'DisplayName','TC1B1');
set(plot1(2),'DisplayName','TC2B1');
set(plot1(3),'DisplayName','TC3B1');
set(plot1(4),'DisplayName','TC4B1');
set(plot1(5),'DisplayName','TC5B1');
set(plot1(6),'DisplayName','TC6B1');
set(plot1(7),'DisplayName','TC7B1');
set(plot1(8),'DisplayName','TC8B1');
set(plot1(9),'DisplayName','TC9B1');
set(plot1(10),'DisplayName','TC10B1');
set(plot1(11),'DisplayName','TC11B1');
set(plot1(12),'DisplayName','TC12B1');
set(plot1(13),'DisplayName','TC13B1');
set(plot1(14),'DisplayName','TC14B1');
set(plot1(15),'DisplayName','TC15B1');
set(plot1(16),'DisplayName','TC16B1');
set(plot1(17),'DisplayName','TC17B1');
set(plot1(18),'DisplayName','TC18B1');
set(plot1(19),'DisplayName','TC19B1');
set(plot1(20),'DisplayName','TC20B1');
set(plot1(21),'DisplayName','TC21B1');
set(plot1(22),'DisplayName','TC22B1');
set(plot1(23),'DisplayName','TC23B1');
set(plot1(24),'DisplayName','TC24B1');
set(plot1(25),'DisplayName','TC25B1');
set(plot1(26),'DisplayName','TC26B1');
set(plot1(27),'DisplayName','TC27B1');
set(plot1(28),'DisplayName','TC28B1');
set(plot1(29),'DisplayName','TC29B1');
set(plot1(30),'DisplayName','TC30B1');
set(plot1(31),'DisplayName','TC31B1');
set(plot1(32),'DisplayName','TC32B1');

% Create xlabel
xlabel('Time');

% Create ylabel
ylabel('Temperature');

% Create legend
legend1 = legend(axes1,'show');
set(legend1,...
    'Position',[0.921262196724405 0.161325193870999 0.056635199652778 0.720347155255545]);

