ELEC50003-P1-CW/Energy/Matlab Plot +Data/pvplot.asv
Aadi Desai b7ac9a5f66 Energy Data files
Added data files and MPPT
2021-06-15 17:50:01 +01:00

16 lines
248 B
Plaintext

data = csvread ( "pvlast.csv");
voltage = data(:,7);
current = data(:,3);
power = current.*
figure;
plot(voltage, abs(current), 'x');
xlabel('voltage (mV)');
ylabel('current (mA)');
title('PV panel IV characteristic');
set(gca,'FontSize',25);