clear all;
close all;
clc;
format compact;

[num, txt] = xlsread('PDLI'); 
PDLI_day = num (1:end,1);

[num, txt] = xlsread('ABGX');
ABGX_day = num (1:end,1);

%Plot beginnen
subplot(2,2,1);
plot(ABGX_day,'b');
title('BO_ ');

subplot(2,2,2);
plot(ABGX_day,'g');
title('HENF_ ');

subplot(2,2,[3,4]);
plot(ABGX_day,'b', PDLI_day, 'g');
title('Vergleich');

