function createfigure(X1, Y1)
%CREATEFIGURE(X1,Y1)
load L:\Homepage\statistik\dram_bpe.mat

daten = data;
X1 = daten(1:48,1);
Y1 = daten(1:48,2);

%  Auto-generated by MATLAB on 24-May-2009 00:35:38

% Create figure
figure1 = figure('PaperSize',[20.98 29.68]);

% Create axes
axes('Parent',figure1,'ZMinorGrid','on','ZGrid','on',...
	'ZColor',[0.03922 0.1412 0.4157],...
	'YTick',[100 1000 1e+004 1e+005 1e+006 1e+007 1e+008 1e+009 1e+010],...
	'YScale','log',...
	'YMinorGrid','off',...
	'YGrid','on',...
	'YColor',[0.03922 0.1412 0.4157],...
	'XColor',[0.03922 0.1412 0.4157]);
box('on');
hold('all');

% Create semilogy
semilogy(X1,Y1,'MarkerFaceColor',[0.07843 0.1686 0.549],...
	'MarkerEdgeColor',[0.07843 0.1686 0.549],...
	'MarkerSize',15,...
	'Marker','.',...
	'Color',[0.07843 0.1686 0.549],...
	'DisplayName','data 1');

% Create xlabel
xlabel('Jahr','Color',[0.03922 0.1412 0.4157]);

% Create ylabel
ylabel('Bits/EUR','Color',[0.03922 0.1412 0.4157]);

% Create title
title('DRAM Bit pro Euro');

