mirror of
https://github.com/supleed2/ELEC50003-P1-CW.git
synced 2024-11-10 01:35:50 +00:00
15 lines
205 B
Matlab
15 lines
205 B
Matlab
data = csvread ( "mpptlast.csv");
|
|
voltage = data(:,2);
|
|
current = data(:,3);
|
|
|
|
x = 0:459
|
|
|
|
figure;
|
|
plot(x, voltage, 'x');
|
|
xlabel(' (%)');
|
|
ylabel('Time (S)');
|
|
ylim[5500
|
|
title('MPPT');
|
|
set(gca,'FontSize',25);
|
|
|